Search found 5 matches

by mikesmurph
14.04.2011, 10:43
Forum: 6.6 - stable
Topic: How to get the Columntypes of a tabel
Replies: 4
Views: 641

Hi jeremicm,
thanks for your help, but i need the SQL-Types not the Delphi-Types.
For Example: My Table have a Column FaxNumber an the SQL-Datatyp is Char.

Michael
by mikesmurph
14.04.2011, 09:57
Forum: 6.6 - stable
Topic: How to get the Columntypes of a tabel
Replies: 4
Views: 641

How to get the Columntypes of a tabel

Hi,

is there a way to get the Columntypes of a Table?

I need the Types like (varchar, int, ...) of column. Can anyone help me?

Thanks

Michael
by mikesmurph
28.01.2010, 13:09
Forum: 6.6 - stable
Topic: GetTabelNames will not refresh...
Replies: 4
Views: 536

Problem solved....

Hi Mark, thanks for Your help and your tip with the database. Now I have solved the Problem. its very Simple... procedure TForm1.KatalogComboBoxChange(Sender: TObject); begin if zconnection1.Connected then Begin zconnection1.Database:=KatalogCombobox.Text; tablecombobox.Items.Clear; tablecombobox.Te...
by mikesmurph
13.01.2010, 22:03
Forum: 6.6 - stable
Topic: GetTabelNames will not refresh...
Replies: 4
Views: 536

Hi jeremicm,

i have put the Code in "onChange", but the result ist the same.
The Tables-Items will not refreshed.

Any other Idea?
Database is on MySql, User is root-User..

Thx

Michael

:( :( :(
by mikesmurph
13.01.2010, 09:52
Forum: 6.6 - stable
Topic: GetTabelNames will not refresh...
Replies: 4
Views: 536

GetTabelNames will not refresh...

Hi! I have a Problem with the Function "GetTabelNames". I don't Know who to Change the TabelNames when i select another Catalog. My Example: I have two Comboboxes. The first combobox represents the Cataloges, the second Combobox represents the Tables of the Selected Catalog. The Selection ...