CFQUERY a Remote MySQL Server

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

  1. #1

    Default CFQUERY a Remote MySQL Server

    I have two networked MySQL web servers. My site root is on Server1, but I want
    to interrogate a database from Server2. How do I specify in the DATASOURCE
    portion of my CFQUERY that I want to do this? Below is my query...

    <CFQUERY NAME="q1" DATASOURCE="[MySQL Database on Server2]">

    INSERT INTO newsarticles (artid, article) VALUES(#artid#, '#article#')

    </CFQUERY>

    Any assistance will be greatly appreciated.
    Brandi

    OU_Brandi Guest

  2. Similar Questions and Discussions

    1. DW remote connection to mySQL server failure
      Am trying to learn Interakt's Impakt . Could not go very far in this learning attempt as I cannot get DW to establish remote connection to the...
    2. Using ODBC to connect to remote MySQL server
      Hi, I have two computers on an LAN. I am trying to connect a client computer to the MySQL server. I have installed unixODBC and...
    3. Always Applying Date Mask on cfquery (MySQL)
      ColdFusion is displaying my dates in an incorrect timestamp format. I understand that the date can be masked using the DateFormat() function, but...
    4. PHP mysql remote testing server nightmare
      Hi, I am having trouble setting up a mysql connection using dreamweaver mx 2004 on a win2k machine. The database is hosted remotely and was setup...
    5. Problems with CFQUERY and MySQL GROUP_CONCAT
      I really need some help. This issue has plagued me for days now. I need to run the query below: SELECT GROUP_CONCAT(fname,' ',lname ORDER BY...
  3. #2

    Default Re: CFQUERY a Remote MySQL Server

    Set up a dsn in cold fusion administrator.
    Dan Bracuk 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