| Thread | Last Post | Replies |
|
| [Firebird] XAResource and TransactionManager with JayBird, LDAP | 15 Dec 2003 05:46 GMT | 3 |
I need to access (and update) two separate databases within one transaction. One of them is Firebird 1.0, the other is any LDAP database (I know most LDAPs are not transactional, transaction on LDAP side will be emulated).
|
| Caching JDBC Statements | 15 Dec 2003 04:05 GMT | 3 |
Anybody ever run into any problems caching a statement along with a connection. Since I use one connection per thread and one statement at time this seemed like a logical thing to do...
|
| Which JDK version does Oracle 9.2 support for stored procedures? | 14 Dec 2003 22:12 GMT | 1 |
I've got Oracle 9.2 and I would like to write a java stored procedure which invokes code from a Java 1.3 jar file, but it seems I'm out of luck. From looking at the examples in C:\oracle\ora92\javavm\demo\examples\
|
| Accessing a Remote Database | 13 Dec 2003 06:24 GMT | 1 |
I have some Java programs (including applications, applets, and servlets) that can access the local database just fine. (By "local", I mean that the application and the database reside on the same PC.) What do I need to do differently if the database is *not* local? For
|
| Oracle Databases' list | 11 Dec 2003 10:15 GMT | 7 |
I would like to get the list of databases existing on my Oracle server. Does anyone know how to do that ? Thank you.
|
| Color of Disabled Checkboxes | 11 Dec 2003 00:27 GMT | 1 |
Good Morning, for my application I need to set the disabled color of the checkboxes to blue, how can I do this ???
|
| How to kill a connection | 10 Dec 2003 05:18 GMT | 3 |
I have a problem, and I don't know how to solve it. We have a web application (done in java/jsp, running under tomcat 4.1.29/j2sdk 1.4.2) that establishes a connection with postgres 7.3.2. We are using jdbc (7.3.1) to do it, but we are not using connection
|
| newbie: jsp / ms sql - nested queries problem | 09 Dec 2003 21:41 GMT | 4 |
I'm writing html in a while loop in a jsp page. Unfortunately, though I'm getting 3 results back from my first database query (I tested for this), only the first one is output. The other iterations in the loop aren't performed, so i only get one set of html tags output instead of
|
| primary key in DAO pattern | 09 Dec 2003 15:07 GMT | 2 |
I am writing a system which is going to be used on different databases. I use the DAO design pattern. The idea is that my system focus on business logic only and it is up to the implementation of the DAO that links my system to different databases with different schema.
|
| PreparedStatement | 08 Dec 2003 11:40 GMT | 2 |
I was wondering if PreparedStatement has some benefits over Simple Statement, even after the statement is closed. In other words, will PreparedStatement in this scenario Connection conn = /* get a connection from a connection pool */
|
| need help using hsqldb | 07 Dec 2003 09:20 GMT | 3 |
I made database photo and put it into /photo dir. hSQLdb ScriptTool did photo.properties, photo.script and photo.data(0 bytes). In photo.script I have:
|
| JSTL Help | 05 Dec 2003 12:20 GMT | 1 |
<table border = "3" > <c:forEach var="myRow" items="${requestScope.successfulPageOutput.rowsByIndex}"><tr> <c:forEach var="myColumn" items="${myRow}"> <tr><c:out
|
| Formating Statement problem (agregation problem) | 05 Dec 2003 12:19 GMT | 7 |
How should I prepare PreparedStatement if: PreparedStatement stmt=conn.prepareStatement("select bit_or(cright) from codeaccess where cid=? and agid in (?) group by cid") Both parameters are to be numbers but in second one I have list of
|
| JDBC crawl problem : what can it be? | 03 Dec 2003 18:05 GMT | 1 |
Generally, the problem is this. I run the same query twice. The first time it takes 1 sec, the second time it takes 10min! Details: I'm using servlets, the query is run over the JDBC-ODBC bridge. The
|
| Newbie JDBC + JSP | 02 Dec 2003 04:19 GMT | 1 |
i try to test my first jsp Script: <html><body> <%@ page import = "java.sql.*" isThreadSafe="false" %> <%
|