Search found 322 matches

by zippo
13.09.2007, 19:36
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Serious TZTable problem with (possible) soullution
Replies: 4
Views: 1581

Try to change the TTable ASAP after setting up the application. I had the same problem and after digging a little bit on the code I had a massife speedup - i mean REALLY extreme. I suggest you to take some time on this.. :)
by zippo
03.09.2007, 10:10
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: escape string
Replies: 8
Views: 4729

Use the backslash
by zippo
03.09.2007, 10:01
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Any restriction on NT or Win98?
Replies: 6
Views: 1958

Happy you found the problem.
by zippo
30.08.2007, 12:30
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Any restriction on NT or Win98?
Replies: 6
Views: 1958

Yes, could be - I also had quite a lotof problems on a Win98 client connecting to MySQL server on another machine. I've read somewhere that it was a 9x - NT incompatibility...
by zippo
30.08.2007, 09:42
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Any restriction on NT or Win98?
Replies: 6
Views: 1958

could be a DLL problem?
by zippo
25.07.2007, 13:04
Forum: User Patches
Topic: [patch_rejected] Patch ZEOS 6.6 to work on D4 / Turbo Delphi
Replies: 23
Views: 10859

oopss.. :) BDS user.. :D
by zippo
24.07.2007, 22:45
Forum: User Patches
Topic: [patch_rejected] Patch ZEOS 6.6 to work on D4 / Turbo Delphi
Replies: 23
Views: 10859

Can you specify which version of Turbo Delphi are you using? Somewhere I read that Explorer version is not allowed to add any additional component.
by zippo
24.07.2007, 08:34
Forum: MySQL
Topic: Problem With Date Format in MySQL 4.0.x?
Replies: 3
Views: 1800

.. or find some old Zeos 5.x and open the ZExtra.pas file - it's full of useful procedures.. :) Even with 6.x I'm still usingit!
by zippo
19.07.2007, 17:52
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: suggestion
Replies: 2
Views: 934

I think the idea is to get a full SQL dump, old plain ASCII .. :)
by zippo
10.05.2007, 07:06
Forum: MySQL
Topic: database record problem for delphi 7
Replies: 4
Views: 2171

What's the exact SQL sentence that you are trying to execute?
by zippo
16.03.2007, 20:16
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: MySQL 5 Delphi 7 Migration
Replies: 1
Views: 938

I'm not 100% sure, but I think you will need to uninstall version 6.1 befor installing the new version. Don't forget to clean ALL the files (especially *.BPL-s)!

About "Application work": Who knows... ;)
by zippo
20.01.2007, 13:44
Forum: MySQL
Topic: Mysql embedded
Replies: 3
Views: 1921

Try win1251 instead of cp1251
by zippo
18.01.2007, 21:22
Forum: MySQL
Topic: Mysql embedded
Replies: 3
Views: 1921

Try to set it when the connection is started. I do this in the OnConnect event

query1.sql.text = 'SET NAMES cp1251'
query1.execsql;

But include a try-except for non MySQL 5 servers (ex. 3.23.50)
by zippo
04.01.2007, 22:37
Forum: Firebird
Topic: Multiple queries in one transaction
Replies: 4
Views: 2480

I think it can be done via a special component called ZSequence or ZProcessor (can't remember and didn't used it until now).
by zippo
04.01.2007, 22:36
Forum: MySQL
Topic: Zeos 6.6 Beta and Mysql 5.0 and Stored Procedures
Replies: 4
Views: 2058

No, not so bad, to be honest.

Example of stored procedure usage throug TZQuery:

Query1.SQL.Text := 'Call MYSTOREDPROC()';
Query1.ExecSQL;

Or

Query1.SQL.Text := 'Select MYSTOREDFUNCTION()';
Query1.Open;

It excellently works for my needs... Hope it helps.