ADOxtra for Macromedia Shockwave Multiuser ServerDataSource object settings
XtraCommand = "DataSource: Name"
This command creates a new DataSource object with the specified name.
AccessMode
XtraCommand = "AccessMode: Normal"
Normal mode allows the data source to be used from both client-side and server side.
XtraCommand = "AccessMode: Limit to server-side"
Secured mode allows to use this data source from server side only.
ADO.ConnectionString
XtraCommand = "ADO.ConnectionString: Provider=Microsoft.Jet.OLEDB.4.0; Data Source=DriveLetter:\PathToDb\Data\Db.mdb"
ADO Connection string identifies the particular data source to be used with this DataSource object.
Note: use _QUOTE_ if you need to place a quote character inside the connection string definition.
ADO.CursorType
XtraCommand = "ADO.CursorType: adOpenStatic"
XtraCommand = "ADO.CursorType: adOpenDynamic"
XtraCommand = "ADO.CursorType: adOpenForwardOnly"
XtraCommand = "ADO.CursorType: adOpenKeyset"
Identifies the type of the cursor to be used by default by queries linked to this data source.
ADO.CursorLocation
XtraCommand = "ADO.CursorLocation: adUseClient"
This setting identifies the default value for cursor location for queries linked to this data source. Using client cursor allows caching data by ADO and do not ask the database for every move within the data.
This is a common ADO settings, it has nothing in common with MUS clients.
XtraCommand = "ADO.CursorLocation: adUseServer"
This setting identifies the default value for cursor location for queries linked to this data source. Using server cursor allows keeping data in sync with changes made by other users.
This is a common ADO settings, it has nothing in common with MUS server or clients.
ADO.LockType
XtraCommand = "ADO.LockType: adLockReadOnly"
XtraCommand = "ADO.LockType: adLockPessimistic"
XtraCommand = "ADO.LockType: adLockOptimistic"
Identifies the type of locking to be used by default by queries linked to this data source.
ADO.CacheSize
XtraCommand = "ADO.CacheSize: 10"
Identifies the size of cache to be used by default by queries linked to this data source.
ADO.Open
XtraCommand = "ADO.Open"
This command tells ADOxtra to open the connection in the configuration time (right after detecting this command).
Note: ADO will not allow changing the connection string if the connection object is opened.
|