I have create an simple Midas Application in BCB4 with a TQuery and a
TTabel component.
with this code:
void __fastcall TForm1::Button3Click(TObject *Sender)
{
OleVariant result;
DBGrid2->Visible = false;
ClientDataSet2->Close();
ClientDataSet2->Provider->DataRequest(Memo1->Lines->Text ,result );
ClientDataSet2->Open();
DBGrid2->Visible = true;
}
The User write a SQL statement in an Memo and goes with this to DB.
Now i want to compile this code with bcb5. And now i recordnize that the
TclientDatatSet have changed.
Can anybody help me to reconfiger the code.
please.
thanks