MSSQL: 100 sec
PostgreSQL: 648 sec
Oracle: 1636 sec (direct mode)
The code is basically like this:
Code: Select all
tbl.UniDirectional:= true;
tbl.Open;
while not tbl.eof do tbl.Next;
Code: Select all
tbl.UniDirectional:= true;
tbl.Open;
while not tbl.eof do tbl.Next;
Code: Select all
UniConnection.SpecificOptions.Values['SQL server.Provider'] := 'prDirect';
UniConnection.SpecificOptions.Values['SQL server.Authentication'] := 'auServer';