|
An object representing an active MicroKernel client.
|
BtrvID
|
Returns the Btrieve ID of a MicroKernel client.
|
|
CacheAcceses
|
Returns the number of cache accesses for a MicroKernel client.
|
|
ClientPlatform
|
Returns the client platform enumeration for a MicroKernel client. See Client Platform for a list of the possible values.
|
|
ClientPlatformName
|
Returns a text version of ClientPlatform.
|
|
ClientSite
|
Returns the client site for a MicroKernel client.
|
|
ConnectionNumber
|
Returns the connection number for a MicroKernel client.
|
|
CurrentLocks
|
Returns the current number of locks for a MicroKernel client.
|
|
DiskAccesses
|
Returns the number of disk accesses for a MicroKernel client.
|
|
NetAddress
|
Returns the address of a MicroKernel client.
|
|
NumCursors
|
Returns the number of cursors for a MicroKernel client.
|
|
RecordsDeleted
|
Returns the number of deleted records for a MicroKernel client.
|
|
RecordsInserted
|
Returns the number of inserted records for a MicroKernel client.
|
|
RecordsRead
|
Returns the number of read records for a MicroKernel client.
|
|
RecordsUpdated
|
Returns the number of updated records for a MicroKernel client.
|
|
ServiceAgentID
|
Returns the service agent identification of a MicroKernel client
|
|
TaskNumber
|
Returns the task number of a MicroKernel client.
|
|
TransLevel
|
Returns the transaction level of a MicroKernel client.
|
|
TransState
|
Returns the transaction state enumeration. See Transaction State for a list of possible values.
|
|
UserName
|
Returns the MicroKernel client user name.
|
To obtain all the MicroKernel clients, use the DtoMkdeClients Collection.
' Instantiate session and connect Dim my_session as new DtoSession Dim result as DtoResult result = my_session.Connect("myserver", "username", "password") ' Get monitor object from session Dim my_monitor as DtoMonitor my_monitor = my_session.Monitor ' Now get Mkde Clients from monitor Dim my_mkdeclients as DtoMkdeClients Set my_mkdeclients = my_monitor.MkdeClients ' retrieve first client and query a property Dim first_client as DtoMkdeClient Dim num_locks as long Set first_client = my_mkdeclients.Item(1) num_locks = first_client.CurrentLocks
DtoMkdeClientHandles Collection
DtoMkdeClients Collection
Disconnects a specific MicroKernel client.
|
result
|
DtoResult long value indicating the result of the method call. Use the Error property of the DtoSession Object to obtain a description for the result.
|
Call this method for every MicroKernel client that you wish to disconnect.
|
Chapter contents
Prev topic: DtoMkdeClients Collection
|