| Thread | Last Post | Replies |
|
| Statement caching | 31 Aug 2006 17:02 GMT | 5 |
I want to do multiple inserts/updates in a (Oracle) database. I use this code: ... final String query="update ...";
|
| Tomcat & SQLServer -- Cannot connect | 31 Aug 2006 02:19 GMT | 2 |
I am using SQL Server 2005. Tomcat 5.0.28. I am trying to connect to DB using tomcat connection pool. I can open server.xml in IE ( no errors) and I get this error: org.apache.commons.dbcp.SQLNestedException: Cannot load JDBC driver
|
| why don't we declare a variable to store return value from Class.forName? | 31 Aug 2006 01:15 GMT | 4 |
I'm a novice at Java programming. I've checked the syntax for Class.forName (http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Class.html#forName(java.lang.String)): public static Class forName(String className)
|
| XSLT Transformation in Javascript | 30 Aug 2006 14:00 GMT | 2 |
I am trying to create a cross-browser implementation that will take an XML file, apply a XSL stylesheet to it and return a DOM stack of the styled XML. In non-IE browsers I am using something like the following
|
| Problem using component tag in hql (Hibernate) | 24 Aug 2006 12:06 GMT | 1 |
I have a problem related to Hibernate. I have the following Data Bean: class MyDataBean {
|
| Cloning JDBC connection? | 24 Aug 2006 08:06 GMT | 9 |
In a JDBC appllication I want to create a second connection, which I can run some queries while some longer queries hang on the primary connection. Surprisingly, I fail to see an easy way to create a second connection. The matter is as simple as getting user, pwd and url, but
|
| HSQLDB: How to check if Server implementation is already running ? | 23 Aug 2006 08:33 GMT | 6 |
I created application which start new Server() from a code and it use only one database. But if I start another implementation of my application (it is another main method) it is not neccessary to create another Server but it is enough to add new database (database.0 ... n). How ...
|
| Unable to establish Java connection to mySQL | 21 Aug 2006 06:11 GMT | 6 |
Java/mySQL veterans: Is there something wrong with the logon string in the DriverManager.getConnection method below? I'm getting a NullPointerException when I run the code below. Here's the entire error message:
|
| Hibernate mapping directly to a HashMap or subclass ... | 17 Aug 2006 00:31 GMT | 1 |
I am new to Hibernate and need some directions here ... I basically need Hibernate to allow me mapping any table to some generic type i.e. Map or HashMap-derived class. I can not rely on a strongly typed DAO not even a generic one. I need Hibernate to do the
|
| Testing for empty columns in resultset | 16 Aug 2006 19:09 GMT | 4 |
This seems too trivial. After populating a resultset with a query, what is the best way to test if a column is null to avoid the dreaded null pointer exception when attempting a tostring() call.
|
| Can run java program on UNIX update Access database on Windows ? | 16 Aug 2006 04:12 GMT | 2 |
I have below run time error java access_update OK - Build connection Setup con
|
| Moving tables contents between databases using JDBC | 15 Aug 2006 18:09 GMT | 2 |
I'm working on a simple program, which migrates tables between different databases. Assuming that table schemas are exactly the same (from JDBC point of view - using DatabaseMetaData class I can check tables schemas) how I can move rows between
|
| Access Database update with pstmt.executeUpdate(), no record updated. | 15 Aug 2006 06:59 GMT | 3 |
I testing pstmt.executeUpdate();, found that the Access does not update. What wrong ? Where cnt is integer,pt_part is String.
|
| Problem with table name | 13 Aug 2006 02:32 GMT | 1 |
I have a problem to access tables in an Informix Database. Table names are something like that : informix.pv_tvvte When I try a "SELECT informix.pv_tvvte.numero_vente FROM
|
| Text File vs Database reading performance | 10 Aug 2006 11:12 GMT | 1 |
I have developped an application that is doing some "backtesting" on market data. I have a serie of text files that contain data, one meaningful data per line.
|