Exemplo n.º 1
0
 public static bool TableExists(string table)
 {
     return(Backend.TableExists(table));
 }
Exemplo n.º 2
0
 /// <summary> Returns whether a table (case sensitive) exists by that name. </summary>
 public static bool TableExists(string table)
 {
     ValidateName(table);
     return(Backend.TableExists(table));
 }