Ask a Question related to Coldfusion Database Access, Design and Development.
-
Pekka #1
com.mysql.jdbc.Driver
I need to create a 'standalone' connection to a MySQL database. Using this
code works: <cfset clazz = CreateObject('java', 'java.lang.Class') /> <cfset
clazz.forName('com.mysql.jdbc.Driver') /> <cfset driverManager =
CreateObject('java','java.sql.DriverManager') /> <cfset jdbcUrl =
'jdbc:mysql://127.0.0.1:3306/db?user=user&password=pass' /> <cfset
connection = DriverManager.getConnection(jdbcUrl) /> But apparently, the
driver manager returns the wrong /old version of the driver: Version: 2.0.11
Driver: org.gjt.mm.mysql.Driver I only have the newest version of Connector/J
in my classpath: mysql-connector-java-3.1.6-bin.jar Is CF possibly using some
old internal version of the driver? Can I make a connection in any other way?
I have some external java objects that needs a connection sent from CF. Any
Ideas ? - Per
Pekka Guest
-
Failure MySQL JDBC driver 3.1 or 3.2
I want to use MySQL 5 with ColdFusion MX 7 standard. I tried the JDBC Connector 3.1 and 3.2. Adding a new DSN works fine in administratrion, but if... -
JDBC Driver Issue
It is always highly worrying when the solution to a problem involves the blunderbus. In this case: windows 2003 server sp1 / MX7 + updates (02,... -
Mysql Driver . What's the best between macromediaDrivers or JDBC Drivers ?
Hi everybody, I would like to know your point of view about The Drivers for Mysql in Coldfusion MX 6.1. At this moment I've macromedia MX6.1... -
Installing JDBC MySQL driver
I reformated my hard drive and reinstalled Coldfusion and MySQL. It seems I have no JDBC drivers. How do I install one? I saw an article that showed... -
DB2 JDBC Driver
What should I use for the DB2 JDBC driver form JDBC SPs? I'm using "DriverManager.getConnection("jdbc:default:connection");" at the moment. Is... -
Pekka #2
Re: com.mysql.jdbc.Driver
Solvetd it: <cfset dss =
CreateObject('java','coldfusion.server.ServiceFact ory').getDataSourceService()
/> <cfset conn = dss.getDataSource('myDataSource') /> <cfset conn =
conn.getConnection('user','pass') />
Pekka Guest



Reply With Quote

