Just in case there are any MySQL wizards out there... I am working on my understanding of the differences between SQL/MySQL. I need help with this line to get me started:
sql = "SELECT MAX([DateTime]) AS LastDay FROM Schedule"
this works as a SQL statement, but MySqL gives the following error:
[MySQL][ODBC 5.1 Driver][mysqld-5.5.9]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '[DateTime]) AS LastDay FROM Schedule' at line 1
/pool.sql/Default.asp, line 111
I will post more info here as I have time to sort through stuff
Anyone curious, to get MySQL started, I converted the connection string in config.asp to read:
const DATABASE_CONNECTION_STRING ="Driver={MySQL ODBC 5.1 Driver};Server=serveraddress;Database=databasename; User=databaseuser;Password=databasepassword;Option=3;"
Using that line, i was able to get the login page working - It can read/use the username/password tables from the mysql database. I simply imported the access nfl.mdb file into MySQL (I used Access-MySQL for this - http://www.bullzip.com/products/a2m/info.php)