SQLDropTable[conn,table]
drops a table in an SQL connection.
SQLDropTable[conn,SQLTable[table]]
drops a table in an SQL connection.
Details and Options
Examples
Basic Examples
See Also
Tech Notes
Related Guides
DatabaseLink`
DatabaseLink`
SQLDropTable
SQLDropTable[conn,table]
drops a table in an SQL connection.
SQLDropTable[conn,SQLTable[table]]
drops a table in an SQL connection.
Details and Options
- To use SQLDropTable, you first need to load DatabaseLink using Needs["DatabaseLink`"].
- Use this function with caution, as you can lose data permanently!
- Returns an integer specifying the number of rows affected by the query.
- The following option can be given:
-
"Timeout" $SQLTimeout the timeout for the query
Examples
Basic Examples (1)
Needs["DatabaseLink`"]If you find that the examples in this section do not work as shown, you may need to install or restore the example database with the DatabaseLink`DatabaseExamples` package, as described in Using the Example Databases.
conn = OpenSQLConnection["demo"];SQLCreateTable[conn, SQLTable["TEST"], {SQLColumn["COL1", "DataTypeName" -> "INTEGER"], SQLColumn["COL2", "DataTypeName" -> "DOUBLE"]}]SQLDropTable[conn, "TEST"]SQLTableNames[conn, "TEST"]CloseSQLConnection[conn];