Manual
Create database
The create database function will create empty tables in your database for later use by the program. There are separate tables for dancer, tip, and configuration data.
You need to use this function once after the first installation, and every time you used the drop database function.
The "create database" does not have a security question but will simply try to create the tables. If the tables are already there, it will abort with an error message like
create table 'taenzer' failed: 1050: Table 'taenzer' already exists
This is normal and not an error.
For computer experts: This function will not actually perform a "create database", it will only create tables in the existing database.
Back to Program functions