Oracle Objects for OLE C++ Class Library Release 8.1.7 Part Number A85258-01 |
|
odb
| The database with which to open this dynaset.
|
sqlstmt
| A valid select SQL statement.
|
options
| Options to be used to create the dynaset.
|
sqlstmt
| A valid select SQL statement.
|
slicesize
| Cache slice size.
|
perblock
| Cache slices per block.
|
blocks
| Cache maximum number of blocks.
|
fetchlimit
| Fetch array size.
|
fetchsize
| Fetch array buffer size.
|
Constant
| Value
| Description
|
ODYNASET_DEFAULT
| 0
| Accept the following default behavior:
Behave like the default mode for an ODatabase object: Field values not explicitly set are set to NULL, overriding server column defaults. Perform automatic binding of database parameters. Strip trailing blanks from character string data retrieved from the database. Create an updatable dynaset. Cache data on client. Force a MoveFirst on dynaset creation. Maintain read-consistency. |
ODYNASET_NOBIND
| Do not perform automatic binding of database parameters.
| |
ODYNASET_KEEP_BLANKS
| 2
| Do not strip trailing blanks from character string data retrieved from the
database.
|
ODYNASET_READONLY
| 4
| Force dynaset to be read-only.
|
ODYNASET_NOCACHE
| 8
| Do not create a local dynaset data cache. Without the local cache, previous
rows within a dynaset are unavailable; however, increased performance results
during retrieval of data from the database (move operations) and from the rows
(field operations). Use this option in applications that make single passes
through the rows of a dynaset for increased performance and decreased resource usage.
|
ODYNASET_ORAMODE
| 16
| Behaves same as ODATABASE_ORAMODE for a ODatabase class except it affects only
the dynaset being created. If the database was created in ODATABASE_ORAMODE
mode, dynaset inherits the property for compatibility.
|
ODYNASET_NO_REFETCH
| 32
| Behaves same as ODATABASE_NO_REFETCH mode for a ODatabase class except it
affects only the dynaset being created. If database was created in
ODATABASE_NO_REFETCH mode, the dynaset inherits the property for compatibility.
|
ODYNASET_N_MOVEFIRST
| 64
| Does not force a MoveFirst on dynaset creation. BOF and EOF are both TRUE.
|
ODYNASET_DIRTY_WRITE
| 128
| Update and Delete will not check for read consistency.
|
![]() Copyright copy; 1996-2000, Oracle Corporation. All Rights Reserved. |
|