OptimizedPersistableOpen Method (UInt32, Boolean, Boolean) |
Opens a persistent object located in the same Database as this object
Namespace:
VelocityDb
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public Object Open(
uint pageSlot,
bool update = false,
bool inFlush = false
)
Public Function Open (
pageSlot As UInteger,
Optional update As Boolean = false,
Optional inFlush As Boolean = false
) As Object
public:
Object^ Open(
unsigned int pageSlot,
bool update = false,
bool inFlush = false
)
member Open :
pageSlot : uint32 *
?update : bool *
?inFlush : bool
(* Defaults:
let _update = defaultArg update false
let _inFlush = defaultArg inFlush false
*)
-> Object
Parameters
- pageSlot
- Type: SystemUInt32
The OidShort encoded as a UInt32 of the object to open within the same Database as this object - update (Optional)
- Type: SystemBoolean
Open the object for update? - inFlush (Optional)
- Type: SystemBoolean
if true, disallow page flushing while opening the object
Return Value
Type:
ObjectThe opened object or
null if it does not exist
See Also