Search results

  1. D

    Using Coldfusion MX w/Mysql at jodohost

    CFC's and UDF's. CFC's and UDF's are great addition to CFMX along with the switch over to JRun / java! The last update to 6.1 was free and I think it was one big jar file. No uprooting to move from 6.0. CFC's are just a bunch of UDF's in a special house. Nothing to them. Good luck D :)
  2. D

    Using Coldfusion MX w/Mysql at jodohost

    Here is my old post again! Doing the connection string yourself is a whole new world for most people, but its a good idea to start learning this method right away. Jodohost ODBC connection creation page works BUT CFMX is not connected to it and you should not be using ODBC connections...
  3. D

    Using Coldfusion MX w/Mysql at jodohost

    I think hatton is coming from cf 5 because of the words he used are C/C++ based. Hatton is also correct here ..... "Exactly, they have the resources to create your connection, all you need to do is tell them your account name and the database name you created for the MySQL database...
  4. D

    Using Coldfusion MX w/Mysql at jodohost

    That will not work and I also suggest not bothering them anymore. They might start getting mad and that is never a good thing. As I said before if you want me to do it let me know and then we can work on the details a little more with you but more trouble tickets will only cause more...
  5. D

    Using Coldfusion MX w/Mysql at jodohost

    I only had problems with MS SQL Server because I think when I orginally created the database the password/ user name field didn't show up so I could not create a ODBC or any other kind of connection because I simply can't log in to the server in general. They said to recreate the database and...
  6. D

    Cold Fusion Setup

    Please read what I wrote http://support.jodohost.com/showthread.php?t=673http://support.jodohost.com/showthread.php?t=673 And good luck!
  7. D

    Using Coldfusion MX w/Mysql at jodohost

    <cfset firebird = CreateObject("java", "firebird")> <cfdump var="#firebird#"> <cfset firebird_worked = firebird.connect( "localhost", "3050", "C:\\EMPLOYEE.FDB", "SYSDBA", "zilo5648", "select * from country")> <cftry> <cfdump...
  8. D

    Using Coldfusion MX w/Mysql at jodohost

    <cfset Access_connection_test = CreateObject("java", "Access_connection_test")> <cfdump var="#Access_connection_test#"> <cfset test_results = Access_connection_test.test_connection("c:/reports.mdb")> <cfdump var="#test_results.isClosed()#">
  9. D

    Using Coldfusion MX w/Mysql at jodohost

    DSNs are only for people who are new to CFMX. Since CFMX is now a J2EE app they stopped using them. The DSNs inside the Admin are just an easier way the edit an XML file and makes it fool proof. Without downloading anything try to follow the example given...
Back
Top