recordset table names problem

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

  1. #1

    Default recordset table names problem

    I just upgraded to CF 7 and now my table names show up as a file path instead
    of just the table name in Dreamweaver when creating new recordsets.

    Example: Instead of saying "Employees" it now says
    C:\Inetpub\wwwroot\...\databasename.Employees

    This makes choosing tables in a recordset a pain now.

    Any suggestions?

    bcremeans Guest

  2. Similar Questions and Discussions

    1. Xtension Dev - Multiple Recordset Field Names
      Anthony Brown wrote: Which extension is that? URL? I think that you have to go into the HTML file created by the SBB and add a third...
    2. Problem inserting a autonumber value from a recordset to another table as text
      The problem I'm having is I'm trying to insert a number value (UserID) obtained from the first SQL1 query from a table called User. In the Access...
    3. How best to grab SQL table names?
      I've got a script that goes through SQL files and returns an array of table names. To find table names I use: while ($_ = <FILE>) { if ($_ =~...
    4. Access table names
      That depends on exactly what you are doing. But basically 'work' is a keyword, which is why the problem occurs. If you reference it as it...
    5. Dataset and table names.....
      I have a stored procedure that queries a sql server database and returns the multiple data tables ( 7 to be precise) these tables are the results of...
  3. #2

    Default Re: recordset table names problem

    Is your db in the wwwroot/db file? also what kind of DB are you using?
    Johnny Derk Guest

  4. #3

    Default Re: recordset table names problem

    The DB is an Access database in its own site specific folder. It worked OK
    under CF MX 6, but after the upgrade the entire path shows up instead of just
    the table name. Everything else works normally otherwise.

    bcremeans Guest

  5. #4

    Default Re: recordset table names problem

    Try Changing driver to access with unicode
    Johnny Derk Guest

  6. #5

    Default Re: recordset table names problem

    I tried Unicode, which fixes the table name problem, but it disables the "Use Default Username" option, which I need due to some linked SQL tables in my Access DB.
    bcremeans 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