/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef __com_sun_star_sdbc_PreparedStatement_idl__
#define __com_sun_star_sdbc_PreparedStatement_idl__
#ifndef __com_sun_star_lang_XComponent_idl__
#include
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.