You only need to place the new driver in ./lib, Java will work out which is the latest version if you don’t change the filename. You can also keep updating the driver in this way.
Is this still true for ACF 9-11? At the moment its critical to have this value set for the installer to work. We might need to rethink this or have an alternate option – this might become a showstopper for people who don’t read instructions
For something as small as the sample apps we might get away with looping over the INSERT sql and running a single query at a time.
I would start again with the official 7.0 installer:
See how we go with the latest for everything. I’ve been running through the installer a few times with mySQL and it seems to be flawless for me on OSX.
Ok - it’s a free day in Norway today, and I’ve spent the whole day in front of computer. Need to spend some time with family. I’ll try the new installer tonight - and if it is still a no go - I’ll email the db to you Justin. Again - thanks a lot for all the help guys!!!
Ok - I just wanted to check if cases can be an issue in some way. So I made 3 versions of the same SQL. The first and second one runs fine - so case has nothing to say on column names. But the 3rd one fails - showing that case does matter on the table name:
<cfquery name="qTest1" datasource="trondulseth">
SELECT userid
FROM farUser
</cfquery>
<cfquery name="qTest2" datasource="trondulseth">
SELECT userID
FROM farUser
</cfquery>
<cfquery name="qTest3" datasource="trondulseth">
SELECT userid
FROM faruser
</cfquery>
Disregard last post - I moved the text in the txt file posted for you to look at rather than the real cnf file. (it’s going a bit fast here). Now I actually get the correct return for the variable. Will try reinstalling my FarCry project once again
Ok - started out with a newly created DB - and all the tables were now created with all lowercase table names.
But I still get the same error - but a bit strange is that even thought the error is the same, the format is now more of a standard server error rather than a Railo dump formatted error:
I’ve just grabbed the database dump you sent me via email, imported it into MySQL 5.5… and my app starts up just fine?..
I’m thinking there is still some kind of issue with either the datasource in Railo or the MySQL server configuration, but I can’t quite put my finger on it.
Can you confirm again that your farcryConstructor.cfm settings look similar to this (just double checking that the dbType and dbOwner are correct):
When you configure the datasource in Railo, have you customised any of the default settings? When I set it up, I just put in the database name, the username and password, and set “Allow multiple Queries” to “true”.
Below is the output I get on Railo 4.1… What’s interesting to note is that the “schema” argument is not passed in to initialiseTableMetadata() but Railo shows it in the arguments scope dump as a “null” value.
Have you changed any language/compiler options in Railo? At the moment we only support the “CFML Default” settings:
Any chance you can document a summarized version of the recommended steps to use that same setup (Railo, Windows or Linux, and MySQL) while it’s all fresh in your mind while mentioning any “gotchas”? - in the “how to” section