Transaction

Handles all data that is need to perform SQL transaction: queries, parameters, info where to put parameters and local enviroment variables.

class Transaction : ITransaction {
string[] commands;
string[] params;
uint[] argnums;
string[string] vars;
bool[] oneRowConstraints;
}

Meta