KeepOpen Property
General info
Label |
Keep Open |
Description |
If switched on the database connection will be kept open in between calls. |
Data type |
Boolean |
Default value |
false |
Type |
Regular |
Code |
6455 |
Symbolic name |
MODEL_PROP_KEEPOPEN |
Lua access code |
inmation.model.properties.KeepOpen |
Available since |
1.52.0.7695 |
- Parent classes
Attributes
Name | Tooltip |
---|---|
PROP_CONFIGURABLE | The property is configurable and can be changed with DataStudio and the various inmation APIs. |
PROP_VISIBLE | The property is visible in DataStudio and can be read by the inmation APIs. |
PROP_HAS_DEFAULT | The property has a default value as standard. |
Examples
Read from or write to the KeepOpen
property.
-- Read from the KeepOpen
inmation.getvalue("<OBJECT FULL PATH>.ODBCDatasource.KeepOpen")
-- Write to the KeepOpen
inmation.setvalue("<OBJECT FULL PATH>.ODBCDatasource.KeepOpen", true)
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "so", Password = "inmation" };
StatelessInterface sli = new StatelessInterface(tcpcfg);
// Read from the KeepOpen
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.ODBCDatasource.KeepOpen"));
// Write to the KeepOpen
Result result = sli.WriteValue(sc, new WriteItem(true, "<OBJECT FULL PATH>.ODBCDatasource.KeepOpen"));