Drivers and dbtypes in CFMX 7

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

  1. #1

    Default Drivers and dbtypes in CFMX 7

    I have my <cfquery dbtype="ODBC"> in our CF 5.1 applications. We moved these
    applications to our CF MX 7 server for testing and I'm getting some invalid
    data errors when using these applications. The drivers are set to MySQL (3.x)
    in our CF MX admin. Do I need to change these drivers back to ODBC socket in
    CFMX 7?

    -Trevor James
    --
    Trevor James
    Web Site Manager
    Hood College
    Office of Marketing and Communications
    Frederick, MD 21701

    Phone: (301) 696-3846
    Email: [email]james@hood.edu[/email]



    TrevJames Guest

  2. Similar Questions and Discussions

    1. jTDS JDBC drivers with CFMX 7 Enterprise
      We are using CFMX Enterprise 7.0.1 (multi-server install) and SQL Server 2000 SP4 (NT Auth only), each on dedicated servers (in the same domain). ...
    2. CFEXECUTE working on CFMX 6.0 but not CFMX 6.1
      Hi all, I'm using CFBB and want to sync-up the usernames and passwords stored in the cfbb database to the file called by .htaccess to require...
    3. CFMX Std standalone to CFMX Ent on JRUN
      I have CFMX 6.1 Standard Edtion running as a stand alone server on my dev box. Now I want to test CFMX 6.1 Enterprise Edition running it as a Jrun...
    4. Upgrade Multiserver CFMX 6.1 to CFMX 7
      Hi, We have a CFMX 6.1 (jrun 4 updater 5) multiserver installation + Apache. We'd like to upgrade to CFMX 7 multiserver installation. Our IT...
    5. CFMX dead - unable to connect after 3.3 Drivers
      Thank you, I believe this fix has worked for our CF install also. I am keeping my eye on it but I have already gone more than 30 minutes without an...
  3. #2

    Default Re: Drivers and dbtypes in CFMX 7

    TrevJames wrote:
    > I have my <cfquery dbtype="ODBC"> in our CF 5.1 applications. We moved these
    > applications to our CF MX 7 server for testing and I'm getting some invalid
    > data errors when using these applications. The drivers are set to MySQL (3.x)
    > in our CF MX admin. Do I need to change these drivers back to ODBC socket in
    > CFMX 7?
    Can you provide the exact error you're getting? What version of MySQL
    are you using? If you're using MySQL 4.1 or higher, the driver that
    ships with CF 7 will not work and you'll have to download and use the
    JDBC driver from the MySQL web site. There are explicit instructions on
    how to go about doing this on macromedia.com. You don't want to use an
    ODBC socket because the performance will be poor compared to JDBC.

    Matt

    --
    Matt Woodward
    [email]mpwoodward@gmail.com[/email]
    Team Macromedia - ColdFusion
    mpwoodward *TMM* Guest

  4. #3

    Default Re: Drivers and dbtypes in CFMX 7

    Here's the error I'm receiving. We're running MySQL version 3.23.38-1:

    Invalid data For more information contact . for CFSQLTYPE CF_SQL_VARBINARY.

    The error occurred in
    E:\Inetpub\wwwroot\news\admin\form_add_featureActi on.cfm: line 11

    9 : <cfelse>
    10 :
    11 : <cfinsert datasource="newsInfo" tablename="features">
    12 : <cflocation url="index.cfm?pageID=_list_features.htm" addtoken="No">
    13 :


    TrevJames 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