| Thread | Last Post | Replies |
|
| Java RAD - Whats out there? | 13 Sep 2004 18:44 GMT | 10 |
Hey guys, a year on and I've learn't...not a lot. Mainly because I've really struggled with syntax and finding time. At work I experience Data Projects to create front ends to SQL Server and Oracle database's And it is great because its easy to use, drag and drop
|
| Class.forName | 13 Sep 2004 17:10 GMT | 4 |
Any one who can tell me the diffrerence beteween writing: Class.forName("com.mysql.jdbc.Driver"); or Class.forName("com.mysql.jdbc.Driver").newInstance();
|
| I need a book recommendition! | 13 Sep 2004 14:48 GMT | 2 |
Can anyone recommend me a good book about J2ME database programming?? Jeff
|
| clobs and blobs | 12 Sep 2004 21:44 GMT | 3 |
I want write new clobs and blobs to database. The problem is I don't know how to create Clob or Blob object. ResultSet.getClob(column) returns null, because db is empty. best regards
|
| subselect or join | 12 Sep 2004 21:17 GMT | 2 |
Not sure if this is the right group to post this to but. This is the current query that I have. select tableA.id,tableB.artist,tableB.image,from tableA,tableB where tableA.image = tableB.image AND tableB.price >0 AND tableB.price < 20
|
| LOAD data Problem with too many files | 12 Sep 2004 09:36 GMT | 5 |
HI .. I am trying to load txt files into a table using jdbc and mysql. The files are located on a client not on the server where the DB is running. Here is the code in simple:
|
| any suggestions for improving HSQL performance? | 12 Sep 2004 07:51 GMT | 2 |
Has anyone got any experience with any options for improving performance with HSQL (e.g. any settings that can be tweaked to improve runtime performance)? We're seeing some of our queries take a long time to execute, and have already done all the usual "common
|
| JDBC replaces characters with question marks | 12 Sep 2004 00:28 GMT | 1 |
I am trying to figure out why certain characters (in my case curly quotes...unicode 201C) are replaced by question marks by the MySql JDBC driver. I am using MySql and the MySql connector J driver. I can write insert statements manually in the standard MySql client and the ...
|
| prepStmt.setObject(rs.getObject(1)) | 10 Sep 2004 15:34 GMT | 2 |
I wrote a program that copies data from different databases to Oracle. To make it work faster I use prepStmt.setObject(rs.getObject(i)); This works fine with Oracle to Oracle and Sybase to Oracle.
|
| Persistence Model | 10 Sep 2004 08:00 GMT | 9 |
I've been working on a generic persistence model for several years now. Checkout http://www.cutthecrap.biz for more information, but in brief: GPO (Generic Persistent Object) is a pure java-based persistent object model that provides a simple persistent mechanism to navigate general
|
| MySQL connection doubt | 09 Sep 2004 21:21 GMT | 7 |
I would like to know if with MySQL´s Connector/J I can connect to a mysql database from my house pc to the server at mysql.webcindario.com
|
| Pros & Cons of storing images in the DB ? | 09 Sep 2004 15:45 GMT | 11 |
I am sorry if the question is maybe a little vague but I am looking for some pointers which points I need to consider. The application: - the a stock control system for a retailer
|
| JDBC - MySQL connection problem -- 'No suitable driver' error | 09 Sep 2004 09:55 GMT | 6 |
I'm trying to get Java connect to Mysql but I keep getting the error message: 'No suitable driver'. Here's what I've installed and done: j2sdk-1_4_2_05-windows-i586-p.exe
|
| Please help with this | 08 Sep 2004 14:09 GMT | 1 |
I'm new in Java, I'm trying to connect to a MS Access Database. The code I use is bellow, it doesn't insert nothing in my database table, it does nothing, why ?! =====================
|
| Why does Oracle store HTML tags in BLOB as symbols? | 06 Sep 2004 07:36 GMT | 5 |
I am trying to save info in a BLOB field which contains HTML tags. Something like: <STRONG>text text text</STRONG> ... I think Oracle stores it "correctly", meaning it stores the "<"
|