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.
ODBC dbase Optional feature not implemented
Re: ODBC dbase Optional feature not implemented
I don't like to answer my own questions, but in case anyone else hits the same problem
DBFUniTable->SpecificOptions->Values["ExtendedFieldsInfo"] = "False";
Fixed the issue
DBFUniTable->SpecificOptions->Values["ExtendedFieldsInfo"] = "False";
Fixed the issue
Re: ODBC dbase Optional feature not implemented
Hello,
This option is responsible for retrieving the information about fields before executing the query (the SQLColumns ODBC API method is used). Microsoft dBase driver returns this error for some field types.
This option is responsible for retrieving the information about fields before executing the query (the SQLColumns ODBC API method is used). Microsoft dBase driver returns this error for some field types.