Board index » delphi » how to ... InsertSQL
Matt
![]() Delphi Developer |
how to ... InsertSQL2004-11-29 05:23:35 AM delphi138 Hi, I'm tyr to use TIBDataSet instead of TIBTable. I found something to use SelectSQL, ModifySQL, ... but I can not use InsertSQL. My code is as follows: IBDataSet1->Close(); IBDataSet1->InsertSQL->Clear(); IBDataSet1->InsertSQL->Text = "Insert into... values .."; IBDataSet1->Prepare(); IBDataSet1->Open(); IBDataSet1->Append(); IBDataSet1->Post(); This SQL statement works well in isql. Plz help me to find my mistakes.... Thnx.. M.t. |