This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
dev:sql:statements:drop_database:home [2009/12/04 16:03] tdo created |
dev:sql:statements:drop_database:home [2012/10/26 15:00] (current) |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| {{page>:top_add&nofooter&noeditbtn}} | {{page>:top_add&nofooter&noeditbtn}} | ||
| <html><div align="center"><span style="color:red">DRAFT</span></div></html> | <html><div align="center"><span style="color:red">DRAFT</span></div></html> | ||
| - | |||
| ====== Omnidex SQL: DROP DATABASE ====== | ====== Omnidex SQL: DROP DATABASE ====== | ||
| + | {{page>:sql_bar&nofooter&noeditbtn}} | ||
| ===== Description ===== | ===== Description ===== | ||
| + | DROP DATABASE will remove the specified database from the specified Omnidex Environment. | ||
| ===== Syntax ===== | ===== Syntax ===== | ||
| <code SQL> | <code SQL> | ||
| - | DROP DATABASE database | + | DROP DATABASE database_name |
| IN “filename” | IN “filename” | ||
| [WITH options] | [WITH options] | ||
| + | </code> | ||
| ===== Discussion ===== | ===== Discussion ===== | ||
| - | == arg1 == | + | == DATABASE database_name == |
| + | Database_name is the name of an Omnidex database previously defined using the CREATE DATABASE Statement. | ||
| - | == arg2 == | + | == IN “Environment_filespec” == |
| + | Omnidex_Environment_filespec is the filespec containing the Omnidex Environment. | ||
| + | |||
| + | == WITH options == | ||
| + | This Statement has no options. | ||
| ===== Examples ===== | ===== Examples ===== | ||
| - | ==== Simple ==== | + | drop database tinydb IN "tiny.xml" |
| - | + | ||
| - | ==== 2nd example ==== | + | |
| {{page>:bottom_add&nofooter&noeditbtn}} | {{page>:bottom_add&nofooter&noeditbtn}} | ||