sql stetment

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
Avi

sql stetment

Post by Avi » Sun 12 Jun 2005 17:10

Hi
I'm using (trying !!!) odac componnent for borland c++.
I'm trying to write this code :
OraSQL1->Text = "CREATE TABLE FILE_DATA (
index NUMBER(12) PRIMARY KEY,";

My problem is :
How can I write more then one line code to OraSQL1->Text ?
Without to use OraSQL1->Text = OraSQL1->Text + ..... ???

Alex
Posts: 655
Joined: Mon 08 Nov 2004 08:39

Post by Alex » Mon 13 Jun 2005 06:58

Try to use OraSQL->SQL->Add("New SQL line");

Post Reply