コード例 #1
0
 public static bool TableExists(string table)
 {
     return(Backend.TableExists(table));
 }
コード例 #2
0
ファイル: Database.cs プロジェクト: netzbasis/MCGalaxy
 /// <summary> Returns whether a table (case sensitive) exists by that name. </summary>
 public static bool TableExists(string table)
 {
     ValidateName(table);
     return(Backend.TableExists(table));
 }