mysql/
This is version one of the release for mysql. This code only connects to the database.
It doesn't come with any code or sample code for use. But if you understand how mysql
works this gives you a starting off point.  The next version will have some sample 
code uses.

Any questions or comments may be e-mailed to muerte@kyndig.com but it's best to come
onto IRC @ irc.acestar.org into #ROM and ask there. I hope this gets some started, and
I'll try to release the new version soon.

DB.C

after:

        if ((fpList = fopen(AREA_LIST, "r")) == NULL)
        {
            perror(AREA_LIST);
            exit(1);
        }
 
add: 

        if (!open_db( ) )
        {
                logf( "ERROR: Could not open the database for reading.");   
                logf( "MySQL Error: %s",mysql_error(&mysqlconn));
                exit( 1 );
        }

ACT_WIZ.C -> If you have copyover

after: 
    fclose(fp);

add:
    close_db();