|
Used to issue commands to a database that has already been opened or created via the MvOPEN or MvCREATE tags. All database interfaces take these commands.
The database must already be open or created via the <MvOPEN> or <MvCREATE> tags. Attributes
All database interfaces take these commands:
The MySQL interface takes these commands:
The MivaSQL interface takes this command:
The query below, "CREATE TABLE S01_MMUI_STORESELECTION" will create a data file called s01/mmui/storeselection.dbf and the subdirectories. The underscore character "_" is specified as the subdir_char. Example:
<MvOPEN NAME = "Merchant"
DATABASE = "{ l.database }"
USERNAME = "{ l.username }"
PASSWORD = "{ l.password }"
TYPE = "mivasql">
<MvDBCOMMAND NAME = "Merchant" COMMAND = "subdir_char" PARAMETER = "_">
<MvQUERY NAME="Merchant" QUERY = "{ 'CREATE TABLE S01_MMUI_STORESELECTION ( ... field list ... )' }">
|