Search found 6 matches

by 4dk2
04.05.2010, 15:37
Forum: ZeosLib 7.0 Beta Forum
Topic: FetchRow Bug, New or Oldstuff?
Replies: 1
Views: 568

FetchRow Bug, New or Oldstuff?

hi ive tried some very simple tests with the latest build 802. Engine= Mysql 5.1 Mysql Table = 400.000 records, sql= select (first 20 fields) from table i looked around in the forum and i could only find old stuff from 2005 about fetchrow, so pushed or new :) Example: var c:cardinal; begin c:=GetTic...
by 4dk2
12.02.2010, 10:18
Forum: 6.6 - stable
Topic: MYSQL - Binary Data, writing to Varbinary or Varchar
Replies: 3
Views: 2238

Hi Pitfiend, i use the AES Mysql standart, to ensure that the data could also be decrypted for example using: select aes_decrypt('data','password'); And my fieldtests had shown, that AES could generate data with zero chars. I dont know the XTEA method, sorry :) But perhaps u can help me with the AES...
by 4dk2
12.02.2010, 09:55
Forum: 6.6 - stable
Topic: Zero characters in string fields
Replies: 4
Views: 534

i dont think its possible for string fields, cause string fields are handled over WideAnsiChar, so terminated by zero char
by 4dk2
11.02.2010, 15:10
Forum: 6.6 - stable
Topic: Zero characters in string fields
Replies: 4
Views: 534

look at my post, i postet a solution, perhaps it can help you.
http://zeos.firmos.at/viewtopic.php?t=2 ... 445b9b7cae
by 4dk2
11.02.2010, 14:04
Forum: 6.6 - stable
Topic: MYSQL - Binary Data, writing to Varbinary or Varchar
Replies: 3
Views: 2238

So it has taken some time but here is my own 1.part of the solution: Writing Binary Data to a myslq VarBinary Field (VarChar cant work, cause its been set via Widechars, so terminated by #0): procedure TForm1.WriteBinaryTest(); var binstr:string; ftbin:TBytesField; aoi:array of integer; i:integer; v...
by 4dk2
10.02.2010, 13:48
Forum: 6.6 - stable
Topic: MYSQL - Binary Data, writing to Varbinary or Varchar
Replies: 3
Views: 2238

MYSQL - Binary Data, writing to Varbinary or Varchar

Hallo, i have the Zeos. 6.6.6 using BDS 2006 I want to store crypted data in a Varbinary or Varchar Field. when entering data in mysql with the mysql-QueryBrowser for example: insert into test values (default,null,'\n\0\n',null); =#10#00#10 it works and the data is stored correctly in the database. ...