protocol differencies
Posted: 01.12.2013, 00:08
Hi,
What is the difference between protocol:postgresql-8 and postgresql-9?
What is the difference between protocol:postgresql-8 and postgresql-9?
This is the official forum of ZeosLib providing support to all ZeosLib users.
https://zeoslib.sourceforge.io/
Are you sure? For some unknown reason we get range check errors on some computers when using postgresql-8 and they are gone if we use postgres-9... I was unable to reproduce it on my computer, but the problem is reported by some of our clients...EgonHugeist wrote:The Name? Actually there are NO behavior changes. Just a hint "we support PG9+".
Code: Select all
constructor TZPostgreSQLDriver.Create;
begin
inherited Create;
AddSupportedProtocol(AddPlainDriverToCache(TZPostgreSQL9PlainDriver.Create, 'postgresql'));
AddSupportedProtocol(AddPlainDriverToCache(TZPostgreSQL7PlainDriver.Create));
AddSupportedProtocol(AddPlainDriverToCache(TZPostgreSQL8PlainDriver.Create));
AddSupportedProtocol(AddPlainDriverToCache(TZPostgreSQL9PlainDriver.Create));
end;
Code: Select all
TZPostgreSQL9PlainDriver = class(TZPostgreSQL8PlainDriver)
Uff i trust you. It might be possible this only was fixed becouse of forward developing of Zeos? There are things which do NOT make me happy with postgre:For some unknown reason we get range check errors on some computers when using postgresql-8 and they are gone if we use postgres-9... I was unable to reproduce it on my computer, but the problem is reported by some of our clients...