예제 #1
0
        public virtual string SerializeDropTable(SQLDropTable dropTable)
        {
            if (String.IsNullOrEmpty(dropTable.Name))
                throw new Exceptions.DatabaseObjectsException("TableName has not been set.");

            return "DROP TABLE " + SerializeIdentifier(dropTable.Name);
        }
예제 #2
0
 public Result DropTable(SQLDropTable sql)
 {
     return(DropTable(sql.TableName));
 }