Problem connecting to Data Source

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

  1. #1

    Default Problem connecting to Data Source

    Hi,

    I seem to be having a problem connecting to a data source, now that I have
    changed the cfform to flash format. This is the error I am getting:

    There are no columns found for the given table name "dbo.vacancy".

    The error occurred in C:\Inetpub\wwwroot\HR\eom_vacancyeditaction.cfm: line 17

    15 : <!--- Update the database --->
    16 : <cfif IsDefined("Form.vacancyRef")>
    17 : <cfupdate datasource="HR" tablename="dbo.vacancy">
    18 : <cflocation url="eom_vacancydetail.cfm?ID=#Form.vacancyRef#">
    19 : <cfelse>

    Can anyone help?

    Thanks

    KevCB Guest

  2. Similar Questions and Discussions

    1. Connecting withOUT Data Source
      Is anyone aware of a way to provide JDBC connection strings to CF at runtime? We have an application that connects to a number of databases...
    2. connecting to data source
      After accessing the Coldfusion administrator \ Data sources. Eventhough many datasources were set up, none of them could be accessed. The following...
    3. Error Connecting SQL 2000 Data Source to CF
      I am trying to setup SQL 2000 in conjunction with CF MX 7. CF is serving pages fine and I created a new account in SQL and that is working fine. I...
    4. Problem connecting to ODBC data source from CFAdministrator
      I've set up the data source called vs28718_1 for Windows Authentication but I get the following error in CF Administrator when submitting the data...
    5. Problem connecting site to data source
      :light; Thanks for guiding. I had the same problem and just found what I missed it. Thanks again
  3. #2

    Default Re: Problem connecting to Data Source

    By the error u provided it seems that there is other reason for error. can u provide some details
    Umesh-12021976 Guest

  4. #3

    Default Re: Problem connecting to Data Source

    Thanks for the reply, but I think I may have fixed this (well the error doesn't come up anymore).

    I am now using SQL update in a cfquery tag instead of the cfupdate tag.
    KevCB 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