Folks,
We are embarking on a development effort in which we want to use Macromedia
UltraDev (in a Wintel development environment) to provide most of the
framework for the backend database processing (in a Linux deployment
environment). After some effort we have succeeded in getting PostgreSQL,
Linux, and GNUJSP to talk to one another, and have established basic
development/deployment database connectivity.
However, there is a problem with the org.postrgresql.Driver JDBC driver -
it does not support objects created using
PreparedStatement StatementFoo = XXX.prepareCall(p1,p2. . .)
which unfortunately is what Macromedia Ultradev generates.
Manually changing the object instantiation to
PreparedStatement StatementFoo = XXX.prepareStatement(p1, p2 . . .)
solves the driver problem, but then breaks UltraDev. Which means the
advantages of a GUI to make basic database connections and establish server
behaviors is lost.
Does anyone know of a more robust JDBC driver that can talk to postgreSQL
and can handle the prepareCall syntax?
Thanks.
Jack Copper
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html
http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets