Search found 8 matches
- 25.06.2009, 02:20
- Forum: ZeosLib 7.0 Beta Forum
- Topic: Delphi 2009 Unicode problem
- Replies: 7
- Views: 1447
Try this simple code in D2009: var s:string; p:PAnsiChar; begin s:='ŐőŰű'; p:=PAnsiChar(UTF8String(s)); showmessage(p); end; IMO the problem is that Zeos typecasts string type (multibyte UnicodeString in D2009) to PAnsiChar (byte-sized type) for calling the mysql API. For example: function TZMySQLEm...
- 21.01.2008, 00:30
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: MySQL backup component
- Replies: 16
- Views: 10314
- 21.01.2008, 00:05
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Stored proc and Lost connection to mysql server - workaround
- Replies: 2
- Views: 940
hi Mark yes, with this workaround can't process multiple results with zdbc interface. but i guess if someone can use this 'low level' interface, he doesn't need this workaround. anyway, zdbc is too high for me, hahh. as i can see, the CALL stmt always returns more resultset (or work like this way), ...
- 20.01.2008, 01:45
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Stored proc and Lost connection to mysql server - workaround
- Replies: 2
- Views: 940
Stored proc and Lost connection to mysql server - workaround
when running a stored proc with call stmt on mysql, the next statement will raise a Lost connection to mysql server error. this is because multiple-result processing is required when calling a sp with call stmt (see http://dev.mysql.com/doc/refman/5.0/en/c-api-multiple-queries.html ). zeosdbo proces...
- 28.11.2007, 10:02
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Need Zeos consultant for How to's
- Replies: 15
- Views: 4237
- 27.11.2007, 01:58
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: MySQL backup component
- Replies: 16
- Views: 10314
MySQL backup component
I wrote a component to create backup from databases. Sorry for posting here, I can't find any email address to zeos dev.team. Delete this thread if this is not the right place for posting this component. Component for Delphi (tested on D7) to backup MySQL databases (5.0.3 and above) based on ZeosLib...
- 28.02.2007, 21:48
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Runtime error 216 while destroying connection
- Replies: 2
- Views: 806
Yes, it doesn't look very nice. I wrote it to log in users to the application. This method worked perfectly in D4 with BDE. I rewrote this part of my code, placed the log in code to MainForm.FormShow, but the form shows then closes if the user click cancel on log in form. It doesn't look very nice t...
- 28.02.2007, 12:28
- Forum: 6.5.1 (alpha) - 6.6.x (beta)
- Topic: Runtime error 216 while destroying connection
- Replies: 2
- Views: 806
Runtime error 216 while destroying connection
Running a query in TZQuery without Application.Run in the project source cause Runtime error 216. See the uploaded demo project.