Esempio n. 1
0
 private void initilize(ConnectionParameters p)
 {
     this._connection                    = null;
     this._connector                     = p.Connector;;
     this._type                          = p.Type;
     this._string_connection             = DataBaseLogic.createStringConnection(p.Type, p.Type == DBMSType.SQLite? p.File : p.Host, p.Database, p.User, p.Password, p.Port);
     this._parameters                    = p;
     this._create_with_begin_transaction = p.BeginTransaction;
 }
Esempio n. 2
0
 internal SQLiteManagement(SQLStatement s) : base(s)
 {
 }
Esempio n. 3
0
 internal SQLData(DbDataReader dr, DbCommand cmd, SQLStatement statement)
 {
     this._dr        = dr;
     this._command   = cmd;
     this._statement = statement;
 }
Esempio n. 4
0
 internal MySQLManagement(SQLStatement s) : base(s)
 {
 }
Esempio n. 5
0
 internal Management(SQLStatement s)
 {
     this._s = s;
 }