mirror of
https://github.com/claunia/apprepodbmgr.git
synced 2025-12-16 19:24:42 +00:00
Adds files to an OS table.
This commit is contained in:
@@ -65,7 +65,7 @@ namespace osrepodbmgr
|
||||
return false;
|
||||
}
|
||||
|
||||
DBEntries = new DBOps(dbCon, this);
|
||||
DBOps = new DBOps(dbCon, this);
|
||||
|
||||
return true;
|
||||
}
|
||||
@@ -83,7 +83,7 @@ namespace osrepodbmgr
|
||||
if(dbCon != null)
|
||||
dbCon.Close();
|
||||
|
||||
DBEntries = null;
|
||||
DBOps = null;
|
||||
}
|
||||
|
||||
public override bool CreateDB(string database, string server, string user, string password)
|
||||
@@ -132,6 +132,11 @@ namespace osrepodbmgr
|
||||
return new SQLiteDataAdapter();
|
||||
}
|
||||
|
||||
public override long LastInsertRowId
|
||||
{
|
||||
get { return dbCon.LastInsertRowId;}
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user