[quote]Originally posted by Marco Kalter:
There have been some fixes since 3.4.6, but I'm not sure if this applies to your situation. You could try the current 4.0 release, or you can send me a little demo project for verification. [/quote]Here is a little example, unfortunately only in C++:

void __fastcall TForm1::Button1Click(TObject *Sender)
{
OS->LogOn();
if(OS->Connected)
{
TOracleObject* OraObj = new TOracleObject(OS, "TDemoPerson", "");
ShowMessage(OraObj->Name);
delete OraObj;
}
OS->LogOff();
}