| Thread | Last Post | Replies |
|
| function in Derby[begginer] | 31 Mar 2007 15:43 GMT | 1 |
I have this class: public class Say { public static int say(int i) { System.out.println("* Say: " + i);
|
| How to increase the speed of searching in a large database? | 31 Mar 2007 05:06 GMT | 2 |
I have a very big database that contains one million rows in it. After an SQL command is executed and the results are assigned to a ResultSet variable, it takes a long time to print the result out. My code looks like something similar to this:
|
| Is it possible to share a DBM/DBA style database between Java/Groovy/PHP ? | 28 Mar 2007 14:16 GMT | 3 |
We are choosing wiki and blog software which may bpth end up being PHP, but if one was java based and the other PHP I was curious if PHP and Java can read/write the same type of DBA/DBM style database which I beleive is an object oriented style database that Perl/PHP use as I
|
| Hibernate305: delete query fails with "must begin with SELECT or FROM" | 27 Mar 2007 03:07 GMT | 2 |
(I posted this first to c.l.j.p, but I realized it's more appropriate here.) I'm following the Hibernate 3.0.5 docs to build a query to delete rows from a table. My code looks something like this:
|
| Java Careers group | 24 Mar 2007 19:57 GMT | 1 |
Java Careers group is an online collection of job openings for java developers all over the world. Enterprises and incorporations may post job advertisements for java software engineers, system analysts, solution architects, project managers and others. Registration to this
|
| how to convert JAVA string in "hh:mm dd/mm/yyyy" to sql datetime format? | 23 Mar 2007 13:00 GMT | 6 |
In my JAVA code I have a string in "15:45 03/17/2007" this format. Could any one let me know how can i insert/update it on to sql database where the column is of type datetime ? If any one has a sample code to do this, that will be great.
|
| JDBC - Oracle - Procedure/Fonction | 20 Mar 2007 21:07 GMT | 1 |
It's possible via JDBC to execute function like this or to execute sql script: begin for dd in (
|
| Two of three SQL stmts execute: third results in table does not exist exception | 19 Mar 2007 22:41 GMT | 12 |
I attempt to collect data from a database three times in one method, all using one connection. The first two queries execute without any problem. However, the third fires an sql exception: java.sql.SQLSyntaxErrorException: Table/View 'TABLENAME' does not
|
| Difference in schema | 19 Mar 2007 02:01 GMT | 3 |
I'm looking for software which might give me difference between schema two databases in Postgresql. The main purpose is catch difference between production and development db. Thanks in advance
|
| FilteredRowSet size | 18 Mar 2007 10:58 GMT | 3 |
I'm working on a Swing app. I want to show a pair of parent/child JTables so that selection within the parent drives filtering in the child. It seemed to me that FilteredRowSet would be ideal for this. So I wrote a TableModel on top of a FilteredRowSet. I can vary the
|
| HSQLDB Lock files | 16 Mar 2007 19:23 GMT | 3 |
I have a problem with HSQLDB not releasing its lock (.lck) file on Windows. I'm using HSQLDB in stand-alone mode. When I close my desktop application, the lock file is still there. If I then start the application again it will just start normally most of the times, but
|
| jdbc commit issue | 14 Mar 2007 00:49 GMT | 1 |
I'm facing some problems with the JDBC connection commit. I'm using an Oracle8i client and server. The jdbc library is classes12.jar My application uses eclipse3.1 as an IDE and the jdk version is
|
| Code generator for data management | 13 Mar 2007 18:00 GMT | 1 |
I am building a database-driver application and I was wondering if there is a code generator that I could use to generate GUIs for the INSERT-UPDATE-DELETE operations on the database's entries. Any suggestions?
|
| [Hibernate] "order-by" attribute on <bag> requires SortedSet implementation? | 12 Mar 2007 16:03 GMT | 1 |
I have the following collection:
> ... > <bag name="comments" table="CR_COMMENT" order-by="CREATE_TS asc"> > <key column="REQ_ID" /> |
| Hibernate trying to register SessionFactory in JNDI - Problem | 11 Mar 2007 06:48 GMT | 1 |
Hibernate 3.2.2 is trying to register the SessionFactory in JNDI even though I have NOT specified a name= attribute or hibernate.session_factory_name in the configuration. I can't find a setting in the configuration that will explicitly
|