Search found 322 matches

by zippo
07.12.2005, 11:03
Forum: MySQL
Topic: Would like an example of accessing a MySQL DB in Delphi 7.
Replies: 4
Views: 2910

Excuse me, but I'm not sure and I have to ask: You want to di it in Delphi, right? Well if this is correct, then you can do the following: Set the query property to RequestLive := true (this enables writing) To open a query, just fill the SQL property (example MyQry.SQL.Text := 'Select * From TABLE'...
by zippo
07.12.2005, 10:48
Forum: MySQL
Topic: MySQL 5 and Delphi 7
Replies: 4
Views: 3309

You're probably using an old libmysql.dll - check this. Since MySQL 4.1 the password coding has changed.
by zippo
07.12.2005, 01:14
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Delphi 2005 and MySQL 5
Replies: 8
Views: 3859

So it's practically done - can I expect the 5.x support included soon. At least can it be included in the protocol list for beta testing? I have done it for me, and it woks. But to do it for me is just a kind of transactional stuff - when it will be done by Zeos developers? Can I help (altrough I se...
by zippo
07.12.2005, 01:08
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Can't find libmysql41.dll
Replies: 7
Views: 4332

matsgefvert, I agree: The best practice is to deploy the correct DLL in tehe same folder as the application. But If you have additional apps (like tools), then this is a problem - my practice is to create da C:qLib and have all the necessary DLLs in the same folder (and add it to PATH variable). If ...
by zippo
07.12.2005, 01:05
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Can't find libmysql41.dll
Replies: 7
Views: 4332

Tom Dog wrote:The point is I dont want to distribute any DLL's with my app and since MYSQL is installed on the target machine I shouldn't have to.
The DDLs are necessary even if the server is on the same computer... see it as a kind of API to the server.
by zippo
07.12.2005, 01:03
Forum: 6.1.5
Topic: Memory leak? or am I doing something wrong?
Replies: 18
Views: 7181

Hmmm... never had those problems. I upgraded to 6.1.5 recently, but it seems sto work OK.. If I discover something I'll post it here.
by zippo
01.12.2005, 14:07
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: @Zplainpostgresql8x@initialization$qqrv
Replies: 3
Views: 1059

It worked for me, too.
by zippo
01.12.2005, 08:59
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: To only return tables from the project of the the user
Replies: 2
Views: 799

Hmmm... Maybe I didn't understood well, so here's what I udnerstood: You wand to show only the tables in a database that the user has privileges to SELECT? Well, in this case you already done it. :) MySQL shows only the data that the user has privileged to SELECT. The same applies for databases, too.
by zippo
29.11.2005, 15:22
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Working with multiple database systems.
Replies: 2
Views: 1098

6.5.1, but still alpha. I used them a few times and had no problems so far.
by zippo
28.11.2005, 14:21
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Error compiling v 6.5.1 in Delphi 5 Enterprise
Replies: 9
Views: 2226

Suggestion: Use a previous version.
by zippo
28.11.2005, 08:59
Forum: 6.1.5
Topic: ZConnection and Login prompt property
Replies: 2
Views: 1186

I had the same problem. My suggestion: Do your own login form. Ususally it looks nice and works exaclty as you expect.
by zippo
28.11.2005, 08:54
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Performance breakdown with MySQL 4.1?!?
Replies: 23
Views: 4693

Yes, I often use recordcount, but never had any problems.. Can you explain more detailed?
by zippo
28.11.2005, 08:51
Forum: Feature Requests
Topic: Up to date Database Protocols Support
Replies: 3
Views: 2158

Can the same be done for old Zeos 5.4.1 ?
by zippo
25.11.2005, 10:09
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Performance breakdown with MySQL 4.1?!?
Replies: 23
Views: 4693

I never had problems regarding speed with Zeos (altrogh exists faster components). Compared to BDE is like SS Enterprise and a skateboard.. :) Indexes are VERY, VERY important for speed - the results of a joined query can be tremendously affected - up to several times faster (I experienced up to 100...
by zippo
24.11.2005, 11:07
Forum: 6.5.1 (alpha) - 6.6.x (beta)
Topic: Problem with double backslash in TZQuery SQL property
Replies: 1
Views: 645

Try using the sign "/" instead of "\". I don't know if it works here, but when using LOAD DATA INFILE it works..