Marco A.Bidóia Posted August 19, 2011 Report Share Posted August 19, 2011 Olá!Estou fazendo uma aplicação Delphi + Postgres usando o ZEOS para conexão, alguém sabe um componente mais rápido?Ou alguma configuração, dica etc...Exemplo da aplicação:(Não usei o CODEBOX pois estava com um erro.) DBConnection := TZConnection.Create(nil); //Configurações DBConnection.Connect; MyQuery := TZQuery.Create(nil); MyQuery.Connection:= DBConnection; for I := 1 to 1000 do begin MyQuery.SQL.Clear; MyQuery.SQL.Add('INSERT INTO dados( ' + ' id, nome, numero, texto, frase, senha) ' + 'VALUES (1, ''Marco'', 123, ''Texto'', ''Frase'', 12345);'); MyQuery.ExecSQL; end;O Insert está em um for para justamente criar uma carga no banco e ter uma ideia do tempo gasto. Quote Link to comment Share on other sites More sharing options...
Question
Marco A.Bidóia
Olá!
Estou fazendo uma aplicação Delphi + Postgres usando o ZEOS para conexão, alguém sabe um componente mais rápido?
Ou alguma configuração, dica etc...
Exemplo da aplicação:(Não usei o CODEBOX pois estava com um erro.)
DBConnection := TZConnection.Create(nil);
//Configurações
DBConnection.Connect;
MyQuery := TZQuery.Create(nil);
MyQuery.Connection:= DBConnection;
for I := 1 to 1000 do
begin
MyQuery.SQL.Clear;
MyQuery.SQL.Add('INSERT INTO dados( '
+ ' id, nome, numero, texto, frase, senha) '
+ 'VALUES (1, ''Marco'', 123, ''Texto'', ''Frase'', 12345);');
MyQuery.ExecSQL;
end;
O Insert está em um for para justamente criar uma carga no banco e ter uma ideia do tempo gasto.
Link to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.