| Thread | Last Post | Replies |
|
| compacting msaccess database from jdbc-odbc | 16 Jun 2005 17:01 GMT | 1 |
i am trying to use a dns-less jdbc-odbc connection to connect to an msaccess database using the following connection string: jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=C:\\db1.mdb is there a way to use this connection to compact the database?
|
| inserting clobs into Oracle DB | 16 Jun 2005 11:02 GMT | 2 |
I got the problem with inserting clobs into Oracle. This process is very slow when I run java code on Tomcat. (same code (same driver, same database, same data, same computer) running from Eclipse is 10x faster).
|
| Check and create tables | 15 Jun 2005 21:16 GMT | 3 |
I dont how to create tables: create table tblTable (id number, description text) but how do you check if the table already exist before you create it? Cheers
|
| JDBC: Retaining multiple result sets from a query made in a loop | 15 Jun 2005 20:29 GMT | 1 |
I'm planning a small Java app using JDBC and have question about making multiple result sets in a loop. My program will make a query once and then use one of the fields from each row in the result set as an argument in a second query. It would
|
| Querying auto increment | 15 Jun 2005 19:04 GMT | 5 |
Is it possible to determine if a column has some form of "auto increment" modifier applied to it though the JDBC metadata services? The closest thing I've found is DatabaseMetaData.getVersionColumns(), but I haven't had much luck getting it to return anything but empty
|
| JDBC and Access | 13 Jun 2005 14:10 GMT | 1 |
I have a strange problem with JDBC and Access. Im trying to create a table and insert values into it, but i'm getting an error saying it doesn't like the syntax, and is "expected 1".
|
| java.sql.SQLException: Io exception: The Network Adapter could not establish the connection | 10 Jun 2005 21:26 GMT | 1 |
I'm having a strange problem with establishing a JDBC connection. I'm using the following code to make the connection: DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver()); System.out.println("About to open connection");
|
| How does MSN do it??? | 10 Jun 2005 15:51 GMT | 6 |
How does MSN allow user to connect to other users to chat if the end user is behind a router/NAT? I'm thinking in terms of Java and using Sockets and I can't think of a way for myself to connect to my friend when he is behind a NAT.
|
| Getting Stale data in ResultSet | 08 Jun 2005 23:06 GMT | 2 |
I am executing a stored procedure using CallableStatement. This procedure takes a paramter and creates a table in database with that parameter as one of the columns in the table. Immediately after procedure returns, I use the same db connection to read the data from
|
| Flush ResultSet to Browser | 08 Jun 2005 16:38 GMT | 2 |
Hi. I am querying an Oracle 9i database that in some cases will return very large resultSets (up to 95,000 rows). I am using Java Server Faces for my front end but I am having some major performance issues, for obvious reasons. My question is this: Can I start flushing the
|
| Transaction manager (Objectstore) | 08 Jun 2005 04:00 GMT | 2 |
I currnently am working on a project which is supposed to run with an Objectstore (actually PSE-Pro) DB-backend. Now i have a little question to the group: Would any of you like to share a design pattern or code snippet for a transaction manager class? It should
|
| dynamically created SQL - batch execution? | 07 Jun 2005 10:21 GMT | 3 |
I use an application with dynamically creates SQL. Using Postgres I can simply create a statement and call statement.execute(sql); Informix, however, doesn't accept this (complains about temp tables not
|
| updateDate error | 06 Jun 2005 22:01 GMT | 9 |
1 - Date now = new Date(); 2 - uprs.updateDate("LASTMODIFIED", now); Error i get is "Cannot resolve symbol" on line 2 Any suggestions?
|
| Finding available drivers | 05 Jun 2005 06:15 GMT | 1 |
Can anyone suggest a methodology for finding out programatically what JDBC drivers may be on a machine? Here's what I intend to attempt: Get the paths for ext, endorsed, library and classpath
|
| Database Query Tool | 04 Jun 2005 21:42 GMT | 6 |
Does anyone know of a good open source Database query tool that I can use the Oracle thin driver with? Thanks in advance, Bob
|