示例#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;
 }
示例#2
0
 internal SQLiteManagement(SQLStatement s) : base(s)
 {
 }
示例#3
0
 internal SQLData(DbDataReader dr, DbCommand cmd, SQLStatement statement)
 {
     this._dr        = dr;
     this._command   = cmd;
     this._statement = statement;
 }
示例#4
0
 internal MySQLManagement(SQLStatement s) : base(s)
 {
 }
示例#5
0
 internal Management(SQLStatement s)
 {
     this._s = s;
 }