commit
void sqlDataManager.commit ( String table ) (professional and enterprise editions only)
Description
Commit a prepared row of data into queue. Once called the data can no longer be edited.
Parameters
- table Name of the database table that the data corresponds to, as a string.
Return Values
Returns void.
Change Log
| Version | Description |
|---|---|
| 5.0 | Available for professional and enterprise editions. |
Examples
Commit Database Row
// Get datamanager
dm = session.getv( "DATAMANAGER" );
// Add session variables into person table
dm.addSessionVariables( "person" );
// Create and add query to buffer
dm.commit( "person" );
dm = session.getv( "DATAMANAGER" );
// Add session variables into person table
dm.addSessionVariables( "person" );
// Create and add query to buffer
dm.commit( "person" );
scraper on 07/16/2010 at 5:23 pm
- Printer-friendly version
- Login or register to post comments
