Properties' Summary
|
DataSourceName |
is the name of a named datasource to use. |
URL |
is the connection URL. Could be used instead of the DataSourceName.
|
Command |
is the command which should be executed.
|
TransactionIsolation |
indicates the transaction isolation level, which should be used for the
connection. |
TypeMap |
is the type map that will be used for the custom mapping of SQL structured types
and distinct types.
|
EscapeProcessing |
returns if escape processing is on or off.
If escape scanning is on (the default), the driver will do
escape substitution before sending the SQL to the database.
This is only evaluated, if the CommandType is COMMAND.
|
QueryTimeOut |
retrieves the number of seconds the driver will wait for a Statement
to execute. If the limit is exceeded, a
SQLException
is thrown.
There is no limitation, if set to zero.
|
MaxFieldSize |
returns the maximum number of bytes allowed for any column value.
|
MaxRows |
retrieves the maximum number of rows that a ResultSet can contain.
If the limit is exceeded, the excess rows are silently dropped.
There is no limitation, if set to zero.
|
User |
determines the user for whom to open the connection.
|
Password |
determines the user for whom to open the connection.
|
ResultSetType |
determine the result set type. |
Properties' Details
|
- DataSourceName
-  
string DataSourceName;
- Description
- is the name of a named datasource to use.
- See also
- com::sun::star::sdbc:XDataSource
|
- URL
-  
string URL;
- Description
- is the connection URL. Could be used instead of the DataSourceName.
|
- Command
-  
string Command;
- Description
- is the command which should be executed.
|
- TransactionIsolation
-  
long TransactionIsolation;
- Description
- indicates the transaction isolation level, which should be used for the
connection.
- See also
- com::sun::star::sdbc::TransactionIsolation
|
- TypeMap
-  
com::sun::star::container::XNameAccess TypeMap;
- Description
- is the type map that will be used for the custom mapping of SQL structured types
and distinct types.
|
- EscapeProcessing
-  
boolean EscapeProcessing;
- Description
- returns if escape processing is on or off.
If escape scanning is on (the default), the driver will do
escape substitution before sending the SQL to the database.
This is only evaluated, if the CommandType is COMMAND.
|
- QueryTimeOut
-  
long QueryTimeOut;
- Description
- retrieves the number of seconds the driver will wait for a Statement
to execute. If the limit is exceeded, a
SQLException
is thrown.
There is no limitation, if set to zero.
|
- MaxFieldSize
-  
long MaxFieldSize;
- Description
- returns the maximum number of bytes allowed for any column value.
This limit is the maximum number of bytes that can be returned
for any column value. The limit applies only to
DataType::BINARY
,
DataType::VARBINARY
,
DataType::LONGVARBINARY
,
DataType::CHAR
,
DataType::VARCHAR
,
and
DataType::LONGVARCHAR
columns.
If the limit is exceeded, the excess data is silently discarded.
There is no limitation, if set to zero.
|
- MaxRows
-  
long MaxRows;
- Description
- retrieves the maximum number of rows that a ResultSet can contain.
If the limit is exceeded, the excess rows are silently dropped.
There is no limitation, if set to zero.
|
- User
-  
string User;
- Description
- determines the user for whom to open the connection.
|
- Password
-  
string Password;
- Description
- determines the user for whom to open the connection.
|
- ResultSetType
-  
long ResultSetType;
- Description
- determine the result set type.
- See also
- com::sun::star::sdbc::ResultSetType;
|
Copyright 2002 Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, CA 94303 USA.