com.mysql.jdbc.Driver

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default 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&amp;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

  2. Similar Questions and Discussions

    1. 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...
    2. 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,...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139