| Thread | Last Post | Replies |
|
| Doble click on a JTable | 30 Jul 2004 23:28 GMT | 3 |
does anyone know how to handle the double click event on a JTable? I wrote the following code: table.addMouseListener(new MouseAdapter() {
|
| Advice re: web-based development tools | 30 Jul 2004 14:12 GMT | 1 |
I have been asked to convert several PowerBuilder (PB) applications to run inside a browser as web-based applications. My back-end database is DB2, and my server OS is Linux. Java is the preferred language.
|
| Building a Business Application | 30 Jul 2004 11:42 GMT | 6 |
I have to implement a business application with the following constraints: - I wanna use Jsp to publish on the web the data stored in a MySql DB .
|
| Java object as parameter to Java stored procedure | 30 Jul 2004 03:11 GMT | 1 |
What are the steps required to do to pass user defined class object as the parameter(IN or OUT) to java stored procedure, that class was uploaded into schema. thanks
|
| problem with iso-8859-2 chars, oracle rdb, jdbc | 29 Jul 2004 10:34 GMT | 2 |
I am dealing with a problem connected with special polish iso-8859-2 characters between Oracle Rdb, Oracle SQL/Services on server side and jdbc on client side. Oracle Rdb OCI Server Release 7.1.5.9.1 - Production, Level 1.7;
|
| getting data from 'image' field | 27 Jul 2004 19:58 GMT | 2 |
how can i retrieve data from a image-field in a mssql database? i tried using 'ResultSet.getBlob(columnName)', but this throws an exception ("java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Unsupported data conversion.")...
|
| encode image for 'setBinaryStream' | 26 Jul 2004 16:12 GMT | 1 |
i like to store small images in a mssql database. i'm using the code below for the insert-statement. PreparedStatement prstmt=connection.prepareStatement("INSERT INTO GCP_IMAGE VALUES(?,?,?,?,?,?,?,?");
|
| [Hibernate] SQL Query | 26 Jul 2004 11:38 GMT | 1 |
I would like to do the following oracle sql query with hibernate by using session.createSQLQuery but I don't know how... SELECT fabId, produitId, SUM(total) AS total FROM (
|
| PreparedStatement.execute() failes... | 26 Jul 2004 11:33 GMT | 1 |
i try to update a mssql-database using the following code PreparedStatement prstmt=connection.prepareStatement("INSERT INTO GCP_IMAGE VALUES(?,?,?,?,?,?,?,?"); prstmt.setLong(1,11);
|
| ResultSet.getXYZ functions return primitive types? why? | 24 Jul 2004 23:50 GMT | 7 |
I am sure this has been asked before, but i can't seem to find the answer. the methods that get objects from java.sql.ResultSet return primitive types. what if the value was null in the database?
|
| OLAP & OLTP schemas and Java App Server | 23 Jul 2004 22:57 GMT | 1 |
(I hope this is the right group to post this. If not I apologize and would appreciate pointers.) We have a Websphere Applicaiton server for our application. We plan to have a database that is part relational and part star on DB2 UDB. We
|
| gotta take a shot | 23 Jul 2004 18:49 GMT | 5 |
Ok, this error is pretty out there, but here goes. I want to retrieve an Oracle 8.1.7 CLOB value in a java.lang.String. I'm running WL 5.1 SP12 on Solaris 8. The code is oracle.sql.CLOB contClob = (oracle.sql.CLOB)
|
| question about the "where ... like ... " clause in SQL | 23 Jul 2004 15:58 GMT | 2 |
I want to list all the products name of which begins with ":pdName". parameterRow.setString("pdName",jTextField_pdName.getText()); queryDataSet_srchAll.setQuery(ne com.borland.dx.sql.dataset.QueryDescriptor(database_hsmng, "select
|
| Accessing MS-Access from Solaris and AIX | 22 Jul 2004 21:25 GMT | 3 |
I am using Sun JdbcOdbcDriver to access MS-Access from Java client on Windows platform. We are in the process of migrating from Win to Solaris and AIX platform. MS-Access will continue to reside on Win platform. How can I access MS-Access from Java client on Solaris and
|
| Oracle Blob Issue | 22 Jul 2004 18:02 GMT | 3 |
May be this is a bug in oracle? Here is what I found out. 1. create a table with blob field and insert a empty blob record. SQL>create table demo(id number, data blob); SQL>insert into demo values(1,empty_blob());
|