From 35c422ce1bc0f56b6f8f60bfa53178ece197e26f Mon Sep 17 00:00:00 2001 From: rosenfield Date: Mon, 8 Oct 2007 16:42:32 +0000 Subject: [PATCH] Follow-up to r992: One last place where MaxRows is set to 0. --- components/zeosdbo/src/dbc/ZDbcStatement.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/zeosdbo/src/dbc/ZDbcStatement.pas b/components/zeosdbo/src/dbc/ZDbcStatement.pas index daacb288..2acd8008 100644 --- a/components/zeosdbo/src/dbc/ZDbcStatement.pas +++ b/components/zeosdbo/src/dbc/ZDbcStatement.pas @@ -318,7 +318,7 @@ constructor TZAbstractStatement.Create(Connection: IZConnection; Info: TStrings) begin { Sets the default properties. } FMaxFieldSize := 0; - FMaxRows := 0; + FMaxRows := -1; FEscapeProcessing := False; FQueryTimeout := 0; FLastUpdateCount := -1;