Search found 4 matches

by dzairo
03.04.2011, 14:52
Forum: MySQL
Topic: Newbie easy question..
Replies: 4
Views: 1053

Hi.
For read all data from defined field to comboBox I use this :

Code: Select all

i:=1;
  while i <= ZQuery1.RecordCount do
  begin
  ComboBox1.Items.Append(ZQuery1.fieldByName('gvyrobca').AsString);
  ZQuery1.Next;
  i:=i+1;
  end;
  Combobox1.ItemIndex:=0;
I can use this or exist other way???
by dzairo
03.04.2011, 13:18
Forum: MySQL
Topic: Newbie easy question..
Replies: 4
Views: 1053

Hi. If I'm good understand then: GetCatalogNames - list all databases in MySQL server , on this list can find my database GetTableNames - list all tables in defined database but what do you mean with this: 'dbless=true' to ZConnection.Properties I'm beginner for MySQL database in Delphi. I thinks so...
by dzairo
02.04.2011, 20:24
Forum: 6.6 - stable
Topic: Help Help...
Replies: 1
Views: 361

Help Help...

Hi all.
is there any who can help to start with this Zeos Lib in Delphi???
I need only how to start, no full project.
I don't have problem with BDE and Paradox7 but how to work with MySQL

PLS: help to start ...
king regards.
by dzairo
31.03.2011, 18:51
Forum: MySQL
Topic: Newbie easy question..
Replies: 4
Views: 1053

Newbie easy question..

Hi. I have Delphi 7 and install Zeos Lib 6.6.6-stable. I'm newbie and want start with MySQL on Delphi. I have easy question for step by step .... On new project I put to new form ZConnection and define user password and HostName. question : I how can I check if exists any database or no??? .. how ca...