addSessionVariables
void sqlDataManager.addSessionVariables ( String table ) (professional and enterprise editions only)
Description
Manually add session variable data to fields, in preparation for insertion into a database.
Parameters
- table Name of the database table that the data corresponds to, as a string.
The keys from the session will be matched in a case insensitive way to the column names of the database.
Return Values
Returns void.
Change Log
Version |
Description |
5.0 |
Available for professional and enterprise editions. |
Examples
Add Data from Session Variables
// Get datamanager
dm = session.getv( "DATAMANAGER" );
// Add session variables into person table
dm.addSessionVariables( "person" );
// Create and add query to buffer
dm.commit( "person" );
See Also
- addSessionVariablesOnCommit() [SqlDataManager] - Adds the session variables to a database table when a row of the table is committed
- clearSessionVariables() [SqlDataManager] - Clears the session variables corresponding to columns in a database table
- clearSessionVariablesOnCommit() [SqlDataManager] - Clears the session variables corresponding to columns in a database table when a row of data is committed to the table