ODBC dbase Optional feature not implemented
Posted: Mon 09 Mar 2015 05:25
I have two projects both of which are built under C++ builder using the DBFUniProvider and UniCOnnection.
The first project connects fine to the DBF file and opens
The second returns "ODBC dbase Optional feature not implemented" when I attempt to open a Table or Query connected to the UniConnection
I have the same parameters set on both, how do I determine what feature it is that isn't implemented?
My code is just
UniTable->Active = false;
UniConnection->Disconnect();
UniConnection->ProviderName = "DBF";
UniConnection->Database = TheDirectoryName;
UniConnection->SpecificOptions->Values["FetchAll"] = "False";
UniConnection->Connect();
UniTable->TableName = TheFileName;
UniTable->Active = true;
That's when I get the exception.
I have tried with and without the Specific Options.
I have confirmed that both the Directory and File exist.
The first project connects fine to the DBF file and opens
The second returns "ODBC dbase Optional feature not implemented" when I attempt to open a Table or Query connected to the UniConnection
I have the same parameters set on both, how do I determine what feature it is that isn't implemented?
My code is just
UniTable->Active = false;
UniConnection->Disconnect();
UniConnection->ProviderName = "DBF";
UniConnection->Database = TheDirectoryName;
UniConnection->SpecificOptions->Values["FetchAll"] = "False";
UniConnection->Connect();
UniTable->TableName = TheFileName;
UniTable->Active = true;
That's when I get the exception.
I have tried with and without the Specific Options.
I have confirmed that both the Directory and File exist.