/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
*
A SQL statement is pre-compiled and stored in a PreparedStatement object.
This object can then be used to efficiently execute this statement multiple
times.
Note:
The
If arbitrary parameter type conversions are required, the method
Example of setting a parameter; setXXX
methods for setting IN parameter values
must specify types that are compatible with the defined SQL type of
the input parameter. For instance, if the IN parameter has SQL type
Integer, then the method
con
is an active connection.
@example:StarBASIC
Only one
execute
methods implicitly close a statement's current ResultSet if an open one exists.
A driver implementing batch execution must return
This limit is the maximum number of bytes that can be returned
for any column value. The limit applies only to
There is no limitation, if set to zero.
*/ [property] long MaxFieldSize; /** retrieves the maximum number of rows that a ResultSet can contain. If the limit is exceeded, the excess rows are silently dropped.execute
methods.
This name can then be used in SQL positioned update/delete statements to identify the current row in the ResultSet generated by this statement. If the database does not support positioned update/delete, this property is a noop. To insure that a cursor has the proper isolation level to support updates, the cursor's SELECT statement should be of the form 'select for update ...'. If the 'for update' phrase is omitted, positioned updates may fail.
Note: By definition, positioned update/delete execution must be done by a different Statement than the one which generated the ResultSet being used for positioning. Also, cursor names must be unique within a connection.
*/ [property] string CursorName; /** retrieves the result set concurrency. @see com::sun::star::sdbc::ResultSetConcurrency */ [property] long ResultSetConcurrency; /** Determine the result set type. @see com::sun::star::sdbc::ResultSetType */ [property] long ResultSetType; /** retrieves the direction for fetching rows from database tables that is the default for result sets generated from thisStatement
object.
If this
Statement
object has not set a fetch direction,
the return value is implementation-specific.
Statement
object.
If this
Statement
object has not set a fetch size,
the return value is implementation-specific.