ColdFusion MX and Firebird connection problem

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

  1. #1

    Default ColdFusion MX and Firebird connection problem

    I'm having a problem setting up a data source connection to a firebird
    database. I currently have successful connections to MySQL and a PosgreSQL
    DBs, but cannot get the firebird DB to validate. I receive the following error
    message upon submission in the CFMX administrator : Connection verification
    failed for data source: testDB []java.sql.SQLException: No suitable driver
    available for testDB, please check the driver setting in jrun-resources.xml,
    error: org.firebirdsql.jdbc.FBDriver The root cause was that:
    java.sql.SQLException: No suitable driver available for testDB, please check
    the driver setting in jrun-resources.xml, error: org.firebirdsql.jdbc.FBDriver
    I've checked and double checked the JDBC URL, driver class and the JVM class
    path in my CFMX administrator to no avail: JDBC URL
    jdbc:firebirdsql://db1:3050/C:\\firebird\\firebird_1_5\\data\\db\\planning.fdb
    DRIVER CLASS org.firebirdsql.jdbc.FBDriver CLASS PATH
    /opt/coldfusionmx/fbjdbc/firebirdsql-full.jar If the JDBC driver exists and
    the path is correct it should be a simple connection to firebird, correct? I
    have NOT upgraded to version 6.1 of Coldfusion MX yet. Would it be possible
    that I need to have the upgrade to be able to successfully connect to
    firebird??? I'm not sure what else to try...

    Hi There Guest

  2. Similar Questions and Discussions

    1. flex coldfusion connection
      can anybody tell me how to upload an image and sent it across to some server which will store that image and other descriptions associated with it...
    2. Connection between ColdFusion and MySQL
      We are running ColdFusion MX on SunOS 5.8 with MySql located on the same server. If we write any new information into the database, our ColdFusion...
    3. ColdFusion MX - Firebird table name issues
      Anyone using Firebird DB ever run into this? I have a Coldfusion Firebird connection and I can only view the data in some firebird DB tables (if...
    4. DSNLESS CONNECTION for COLDFUSION 4.0
      Is there anywy to have a dsnless connection for COLDFUSION 4.0? I have seen a couple scripts out there but when i try them it errors on me. I...
    5. PHP + Firebird problem with blob field size
      Hello people, First: sorry my weak english. I´m brazilian. I have the fallow blob field in my database: CREATE DOMAIN DM_TEXT AS BLOB SUB_TYPE 1...
  3. #2

    Default Re: ColdFusion MX and Firebird connection problem

    Hi,

    I am using FireBird with CF MX 6.1 with all updates and all woks fine.
    In CF admin I set following:
    JDBC URL -- jdbc:firebirdsql:195.122.200.210:E:\DB\Game.gdb
    (jdbc:firebirdsql:<server_IP>:<Full_path_at_the_se rver>)
    Driver Class -- org.firebirdsql.jdbc.FBDriver

    And I put file firebirdsql.jar in to the folder <cf_root>\lib\

    This is all.
    ---
    Eugene Krivenja


    Eugene Guest

  4. #3

    Default Re: ColdFusion MX and Firebird connection problem

    Thanks.

    I guess I'll try the 6.1 upgrade and updaters and hope it works.
    Hi There Guest

  5. #4

    Default Re: ColdFusion MX and Firebird connection problem

    CFMX 6.1 upgrade and 6.1 updater didn't help. Back to square one. :disgust;
    Hi There Guest

  6. #5

    Default Re: ColdFusion MX and Firebird connection problem

    Actually, the CFMX 6.1 upgrade and 6.1 updater seemed to help with CF being
    able to locate the jdbc driver for firebird and the 'No suitable driver
    available' error went away. Adjusting the JDBC URL was the final solution.
    Using a suggestion from another forum on the web, I originally had the
    following syntax: jdbc:firebirdsql://db1:3050/C:\\Firebird\\data\\db\\test.fdb
    (jdbc:firebirdsql://<server>:3050/:<Full_path_at_the_server) ... which timed
    out. Utilizing the above suggestion I eliminated the ':3050' and instead used:
    jdbc:firebirdsql:db1:C:\Firebird\Firebird_1_5\data \db\test.fdb
    (jdbc:firebirdsql:<server>:<Full_path_at_the_serve r) as suggested above. Now
    the Firebird DB verifies in CFMX 6.1. Thanks!

    Hi There Guest

  7. #6

    Default Re: ColdFusion MX and Firebird connection problem

    No thanks :)
    If you need to set the port number, use this syntax:

    jdbc:firebirdsql:db1/3050:C:\Firebird\Firebird_1_5\data\db\test.fdb
    (jdbc:firebirdsql:<server>[/<port>]:<Full_path_at_the_server)

    ---
    Eugene Krivenja


    Eugene 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