Adds files to an OS table.

This commit is contained in:
2017-04-23 06:09:57 +01:00
parent 551133b76c
commit e23744c4f8
7 changed files with 171 additions and 16 deletions

View File

@@ -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
}
}