| Thread | Last Post | Replies |
|
| executeQuery() in Statement class .... | 22 Jun 2004 15:06 GMT | 5 |
This piece of code in a JDBC program executes fine: Statement st = conn.createStatement(); ResultSet rec = st.executeQuery( "SELECT DEPTNO FROM TABLE1"); But when I see the documentation for "Statement" at the following URL, it
|
| SQLJ program .... | 22 Jun 2004 12:26 GMT | 1 |
ok, this is a SQL program program that runs fine (on DB2). What does it mean to have iterator declared outside the class declaration (from a Java perspective, what are we doing here??)...I was under the impression that import statements were the only statements that could come ...
|
| Regarding EJB accessing DB | 21 Jun 2004 17:14 GMT | 5 |
Please help:) I have a TaskManager class which is running as a timer, say every minute.In evenry minute, the TaskManager instantiates an EJB which makes a connection to the database and brings a file name which then will be loaded.When I run
|
| simple max function? | 21 Jun 2004 17:13 GMT | 9 |
This is not legit SQL. I wondered if you could do what I was attempting here in one statement though. conn.prepareStatement( "UPDATE vendors SET highestVendorConfirm=MAX(?,highestVendorConfirm),
|
| Documentation for Classes for SQLJ .... | 21 Jun 2004 13:27 GMT | 1 |
Could someone let me know the website where all the classes for SQLJ are documented (classes like ConnectionContext, DefaultContext, Iterator etc.) TIA
|
| ODBC access | 21 Jun 2004 09:21 GMT | 3 |
I'm writing some java code that reads data from a DB2 table on an IBM iSeries which is then used to update a Clipper database on a Windows server. We have been instructed that the majority of the code needs to run on the
|
| DBPool.jar / Mysql Creates a new pool for each connection | 21 Jun 2004 08:44 GMT | 2 |
Hi all, I have looked everywhere for an answer.... Any help would ... help followed the instructions from
|
| BulkInserting | 21 Jun 2004 07:23 GMT | 2 |
I need to update datas from some tables in one database to another database (databases are placed on the defferent servers) ones every day. Both databases are made in MS SQL Server 2000. Is there any standard stored procedure that I can run, or may be any class
|
| error 245 in Informix JDBC | 20 Jun 2004 15:00 GMT | 2 |
I get error message -245 in JDBC Informix and the database is defect. What could be the problem? Thanks Norbert
|
| Documentation | 20 Jun 2004 05:14 GMT | 1 |
I am rather amazed at the quality of documentation of MySQL and HSQLDB. I would think given the extreme competition in this area, that the documentation on the popular databases would be first class. Yet it is abominable. You could easily waste 2 days just getting
|
| Can't seem to UPDATE dBase table | 19 Jun 2004 12:01 GMT | 6 |
I'm using jdbc-odbc bridge to try and update a .dbf table. My code is as follows: stmt.executeUpdate( "INSERT INTO sas.dbf VALUES ('1234', '1234567', '1', '1234',
|
| HELP !!! java.sql.SQLException: General error HELP!!!!! | 18 Jun 2004 10:22 GMT | 2 |
When I wanna remove a record from my Database or update a record in my database. I get a java.sql.SQLException: General error, but he does remove the record. what does it mean java.sql.SQLException: General error and how can i fix it?!
|
| SQL and the LGP-30 | 18 Jun 2004 08:45 GMT | 1 |
You can see a picture of my first personal computer, an LGP-30 at http://mindprod.com/jgloss/mindprod.com/equipment.html It had no transistors, just tubes, a rotating drum, and a few diodes. You programmed the thing with absolute addresses, a hex track and
|
| Strange problem with JDBC and Oracle 10g | 18 Jun 2004 07:35 GMT | 2 |
Folks! Somehow delete statements inside a transaction do not seem to have any effect when I set the isolation level to *serializable* in Oracle 10g. With the default isolation level (read committed) everything works fine.
|
| Portable Java Data Layer based on JDBC | 18 Jun 2004 01:11 GMT | 4 |
I, as a java developer, find myself constantly switching among different DBMS. The JDBC easies it greatly, but I am thinking about a Portable DATA Layer kind of functionality to aliviate the problems when you must do
|