Exemplo n.º 1
0
 public static IVDataBase CreateDB(ushort auth_code, string db_name, string author = "nocopy", string description = "")
 {
     return(VDataBase.Create(auth_code, db_name, author, description));
 }
Exemplo n.º 2
0
 public static bool DBExists(ushort auth_code, string db_name)
 {
     return(VDataBase.DataBaseExists(auth_code, db_name));
 }
Exemplo n.º 3
0
 public static IVDataBase LoadDB(ushort auth_code, string db_name)
 {
     return(VDataBase.Open(auth_code, db_name));
 }