Database

Database is used to store user information. Most of the information is for user authentication purpose. We need to create a database called "AntigoneUI"

We need 3 tables in the database.

1. user_files(id smallint, IsmeneFile varchar(20), XMLFILE varchar(20))

2. user_passwd(id smallint, userid varchar(20), password varchar(50), association varchar(50))

3. user_role(userid varchar(20), role varchar(20))

These tables can be created with the following query statements.

1. CREATE TABLE user_files (id smallint, 
	IsmeneFile VARCHAR(20),XMLFILE VARCHAR(20));
2. CREATE TABLE user_passwd (id smallint, userid VARCHAR(20),
	password VARCHAR(50), association VARCHAR(50));
3. CREATE TABLE user_role (userid varchar(20), role varchar(20));

With these tables created, the application is ready to use the data.

For those who finished setup the table. The part is done for you. For those of you who do not have a database and would like to get one, the following contains the download and installation guide for a free but good database managment software, MySQL

MySQL -- Free Database

You can download MySQL at this site, http://www.mysql.com. After download and installed into the server, there is a utility program that you may want to download also at http://www.anse.de/mysqlfront/. This is a UI program that allow you to administrate the database (viewing and editing tables, data, schemas) in a graphics mode. It is more convenient to edit tables and schema with this utlity than setting query statement.