DBX Error: Error Code: 65535
Posted: Wed 04 Sep 2013 07:14
Hello,
we are experiencing some problems with our application while connected to PostregSQL using
dbexppgsql40.dll (version 3.2.3).
We are randomly getting the error: DBX Error: Error Code: 65535.
The connection parameters are set like this:
I saw in another post with the same error you are suggesting to set the direct mode for MySQL driver. Has PostgreSQL driver something similar we can try?
Thanks,
Igor
we are experiencing some problems with our application while connected to PostregSQL using
dbexppgsql40.dll (version 3.2.3).
We are randomly getting the error: DBX Error: Error Code: 65535.
The connection parameters are set like this:
Code: Select all
Conn.DriverName := 'DevartPostgreSQL';
Conn.GetDriverFunc := 'getSQLDriverPostgreSQL';
Conn.LibraryName := 'dbexppgsql.dll';
Conn.LoginPrompt := False;
Conn.VendorLib := 'not used';
Conn.Params.Clear;
Conn.Params.Add('DriverName=DevartPostgreSQL');
Conn.Params.Add('HostName=' + hostName);
Conn.Params.Add('DataBase=' + dbName);
Conn.Params.Add('User_name=' + userName);
Conn.Params.Add('Password=' + password);
Conn.Params.Add('Server Port=' + port);
Conn.Params.Add('BlobSize=-1');
Conn.Params.Add('FetchAll=True');
Conn.Params.Add('LongStrings=True');
Conn.Params.Add('DetectParamTypes=True');
Conn.Params.Add('Charset=UTF8');
Conn.Open;
Thanks,
Igor