Sets the maximum number of rows a result set object can contains for the specified statement object.
Syntax
setMaxRows( statement , maxrows )
statement.setMaxRows( maxrows )
Parameters
statement
|
the statement object to use.
|
maxrows
|
the maximum number of rows, 0 is unlimited.
|
Returns
Example
stmt.setMaxRows( 0 )
|