2.0 - Getting Started

It doesn't take much to get started using qcdorganizer. Below are outlined the basic steps needed:

2.1 - Database Initialization

At the moment, only mysql has been tested to work with qcdorganizer. Other databases may also be supported, and of special interest would be SQLite, which does not require a running database to function. If these databases follow the same language as MySQL, they will function perfectly. Otherwise, there may be problems.

Setting up a database under mysql is easy. First, install mysql. Check your OS procedures for doing so if you're running a Unix variant, or go grab it from their website if you're running windows. Follow your OS or website instructions on setting the database up for general usage.

Now, the first thing you want to do when mysql is up and running is to create a database to use. To do this, log into mysql with an account that has permission to create a database and run the following:

CREATE DATABASE myDatabase;

Where myDatabase is the name of the database you want to create.

Next, you want to add a user to access that database. To do this, log into mysql with an account that is capable of granting user access and enter the following:

GRANT CREATE,INSERT,UPDATE,SELECT ON myDatabase.* TO 'myUser'@'myHost' IDENTIFIED BY 'myPassword';

Below the above parameters are described:

And that's it. You now have a functional database. qcdorganizer will take it from there.

2.2 - Detecting Connected Organizers

Detecting connected organizers happens two ways:

Once scanned, if any new organizers are found, they are added to the database. If organizer are not found, they are not removed (They will just be off-line for the duration).

2.3 - Connecting to the Database

To connect to the database, go to Tools->Connect and fill out the required information. It should match what you put in while initializing the database. When you press "Ok", a connection attempt is made. If it fails, the dialog will not close and you can try again.