imstillatwork
IS-IT--Management
I'm trying to create a new MYSQL database using the following query..
If failes saying I don't have access to that DB. The user name being used has CREATE privelages, I've checked that a million times.
How can I create a new DB from a query, and get access to it? ?
I have full control over the mysql server, cfmx7 and web servers.
Kevin
Phase 1: Read the CFML Reference
Phase 2: ???
Phase 3: Profit!
Code:
<cfquery datasource="#mydshere..#">
CREATE DATABASE IF NOT EXISTS my_test
</cfquery>
If failes saying I don't have access to that DB. The user name being used has CREATE privelages, I've checked that a million times.
How can I create a new DB from a query, and get access to it? ?
I have full control over the mysql server, cfmx7 and web servers.
Kevin
Phase 1: Read the CFML Reference
Phase 2: ???
Phase 3: Profit!