Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default jTDS SQL Driver

    Can somebody point me to any articles, blogs, etc that discuss how to use the jTDS drivers with CFMX 7, including installing and any configuration?

    Thanks,

    Jeff
    jeff_gombala Guest

  2. Similar Questions and Discussions

    1. Datasource setting when using jTDS 1.2 with CFMX 7 andSQL2000 (sp4)
      I am trying to get the jTDS 1.2 driver working on CFMX 7 and SQL 2000 (SP4). Here is what I did: - stopped CFMX service - copied jTDS-1.2.jar to...
    2. jTDS and CFMX 6.1 Installation?
      I'm wondering if someone can help me install jTDS into my CFMX 6.1 world. I copied the jtds-1.2.jar file to the C:\CFusionMX\lib directory. In...
    3. 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). ...
    4. jTDS install on Linux and usable by CF
      I'm running JRun4 in distributed mode with CFMX7 sitting on it, all managed by SuSE Enterprise Linux 9. I'm new to Linux and I'm trying to figure...
    5. jtds sqlServer driver text datatype issue
      I'm new to Linux and I'm trying to figure out how to install jTDS and configure it to the CFadmin JDBC list. I'm running JRun4 in distributed mode...
  3. #2

    Default Re: jTDS SQL Driver

    setup is fairly easy, drop the jar (latest version is 1.1) into
    cfinstall\wwwroot\web-inf/lib, chose other for the datasource then:

    jdbc URL:
    jdbc:jtds:sqlserver://dbServer:dbPort/dbName;user=userName;password=password
    ;{sendStringParametersAsUnicode=true};{domain=wind owsDomain}

    driver class: net.sourceforge.jtds.jdbc.Driver

    leave the rest of that dialog blank. if you use the domain option on the URL,
    then the user & password should be for that windows domain. that's about it. it
    behaves like the datadirect driver as far as cfquery goes.


    PaulH 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