Use CF Datasources outside CF

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

  1. #1

    Default Use CF Datasources outside CF

    I need to create a JSP on the coldfusion server, and access coldfusion datasources in that JSP. Is there anyway to do this in CF6.1 or CF7.

    Thanks.
    jtdavidson83 Guest

  2. Similar Questions and Discussions

    1. List all available Datasources
      Hi@all! How can I do it, that I get all datasources that are registerd in the CF-Server? I tried somethin like that but it did'nt work: ...
    2. Listing Datasources in MX 6.1
      Anyone know what's up with CFMX 7 and doing this same thing? It's clearly been ripped out and re-done with the new funtionality in the api's......
    3. Listing Datasources in MX 6.1
      Anyone know what's up with CFMX 7 and doing this same thing? It's clearly been ripped out and re-done with the new funtionality in the api's......
    4. CF5 Datasources missing
      :confused; Hi folks, I was wondering if anyone can help. My datasources have gone missing in CF5 Administrator, and now my apps refuse to work....
    5. 2 datasources in 1 CFQUERY
      Hello, Some of our Access tables are being moved to our SQL Server, while some remain in Access. I have two datasources that separate the SQL from...
  3. #2

    Default Re: Use CF Datasources outside CF

    I need to do that too with a ColdFusion MX7.1 Server configuration.

    Here's the code for a J2EE configuration.

    String sql = "SELECT trip_id, name, teaser, price FROM trip";
    java.sql.Connection connection=null;
    java.sql.Statement stmt=null;
    java.sql.ResultSet trips=null;
    javax.naming.InitialContext ctx = new javax.naming.InitialContext();
    javax.sql.DataSource ds = (javax.sql.DataSource)
    ctx.lookup("java:comp/env/jdbc/ds-name");
    connection=ds.getConnection();
    stmt=connection.createStatement();
    trips=stmt.executeQuery(sql);

    robsandeh 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