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

  1. #1

    Default Postgres Problems

    Hi All,

    I'm posting this in case somebody else has the same problem.

    With CF 7 (I'm using Red Hat 9, I don't know about other platforms): after
    you restart the server, if the first page that is requested from the server
    is a page that makes a call to the Postgres JDBC driver AND you have
    debugging turned on, you'll get a 500 error saying something like 'Error
    Executing Database Query'. And then from the point on all your debugging
    information will be overwritten with the error message, even if you're on a
    page that doesn't make a database call. Even if you restart the server the
    error will still show up.

    The cure (at least for me): go in and move the JDBC driver out of the CF
    class path. Restart the server and call a non database calling page, your
    debug information should come back. Move the JDBC driver back in, restart
    the server. Make a call to the non-database page, make sure your debug
    information is there. Cross your fingers and make a call to the database
    page, your debug information should be back and all should be right with the
    universe.


    --
    Best Regards,
    Chris


    Chris Lyman Guest

  2. Similar Questions and Discussions

    1. Problems with JDBC site and Postgres mailing list subscription page
      http://jdbc.postgresql.org/ seems to be down. Also I can't connect to the mailing list subscription page at: ...
    2. php + postgres
      I've got this connection script for my database: <?php $password = md5("xxxxx"); $user = "user"; $host = "localhost"; $database = "base"; $link...
    3. postgres
      I'm trying to access a PostgreSQL database on my machine, however, I get the following error: irb(main):003:0> conn = PGconn.connect("localhost",...
    4. [OT] postgres
      > I can connect through DBI, but not using the postgres module. Very Hm. Does your postgres startup command have a "-i" in it somewhere? Tom
    5. [OT] postgres
      > It doesn't appear to. ps aux | grep postgresql doesn't show anything You might try adding a "-i" to the "postmaster start" command. That'll...
  3. #2

    Default Re: Postgres Problems

    Ive been using coldfusion and postgres with resin3 on freebsd and have had
    also noticed that the first call to the postgres database fails but every call
    after that is fine. Although I do not use debugging so I am not sure if the
    output is affected.

    Symantec 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