CF7 and Firebird Database setup

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

  1. #1

    Default CF7 and Firebird Database setup

    Ok... Have read and re-read the postings about how to connect Firebird to CF
    server. Cannot get it to work. Can someone help me step by step?

    I have a Firebird file on machine (192.168.10.173), which is part of a Desktop
    application that needs to submit information to an Intranet. I have a drive
    share to the file (H drive). I need to connect it to my CF server
    (192.168.10.179). I downloaded FirebirdSQL-1.5.5JDK_1.3.zip and placed the
    firebirdsql-full.jar in C:\CFusionMX7\lib\.

    I went into the CF administrator section "Data Sources". Typed "TestDB" as the
    Data Source Name and Driver as "Other".
    Made JDBC URL = "jdbc:firebirdsql://192.168.10.173:3050:C:\HMS\HMSUSER.DB",
    Driver Class = "org.firebirdsql.jdbc.FBDriver", Driver Name =
    "C:\CFusionMX7\lib\firebirdsql.jar", and specified the Username and password of
    the database.

    When I submit the information I get:

    Connection verification failed for data source: testDB
    java.sql.SQLException: No suitable driver available for testDB, please
    check the driver setting in
    resources file, error: null
    The root cause was that: java.sql.SQLException: No suitable driver
    available for testDB, please check the
    driver setting in resources file, error: null

    I would say that the JAR file is not installed correctly or the Host machine
    is not setup to broadcast as server.


    creep80209 Guest

  2. Similar Questions and Discussions

    1. Can't get past RDS login on Database setup
      This is very frustrating - and it's the first time I've tried to do this. In DW, when I go to the Bindings tab to create a recordset, I can't do...
    2. Firebird 1.5
      Where see examples of use ASP with Firebird ? thanks Vivian
    3. PHI Interbase or Firebird database
      I am using the PHP 4.3.4 with a standard (unmodified ) php.ini file. I am tryong to output a blob field that contains a jpeg image using the...
    4. PHP Interbase or Firebird database JPEG output
      I am using the PHP 4.3.4 with a standard (unmodified ) php.ini file. I am tryong to output a blob field that contains a jpeg image using the...
    5. Odd FIrebird Issue
      Hi there, I recently installed Debian then upgraded to unstable and I'm working on setting things how I like it and installing all my favourite...
  3. #2

    Default Re: CF7 and Firebird Database setup

    Here's my setup that works fine (Win2003 servers):
    JDBC URL: jdbc:firebirdsql:FB_sql/3050:d:\\db_mypath\MyFBdatabase.gdb
    Driver Class: org.firebirdsql.jdbc.FBDriver
    Driver Name: org.firebirdsql.jdbc.FBDriver

    In the URL, "FB_sql" is the name of the Firebird server, d:\\db_mypath is the
    path from the server's perspective (D: is on FB_sql server). In CF
    Administrator, under heading "Java and JVM", set the Class Path to point to the
    jar file, relative to the CFMX server. Stop and restart the CFMX service
    anytime you change the class path.

    BTW, if you're looking for a good Firebird admin tool, check out DBworkbench
    from [url]www.upscene.com[/url]. Not free, but cheap, and well worth the small price.

    (If you see an emoticon, it should read "...3050" colon "d" colon backslash
    backslash mypath backslash myDB.gdb)
    Good luck! I've had great success with CF <--> ODBC <--> Firebird and now
    CFMX <--> Jaybird JDBC <--> Firebird

    chasAFD 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