| Thread | Last Post | Replies |
|
| Multi-threaded Database Support For Java | 30 Sep 2004 21:01 GMT | 1 |
I will be working on a Java project that will ultimately run on a linux platform and am interested in feedback on the databases typically used in Java development. My prior projects have been developed in Microsoft .Net against Sql Server.
|
| batch update as a single transaction | 30 Sep 2004 19:06 GMT | 2 |
I'm doing a JDBC batch update, writing several thousand rows to a single table. As I understand it a batch update can partially succeed, so some of my rows might get written and some not. I'd like the batch update to either fully succeed or completely fail, commit or rollback in ...
|
| Java connection string for MySQL database | 30 Sep 2004 15:17 GMT | 5 |
I have a problem connecting with java code to a pc running MySQL database on a network. I am able to connect to a MySQL database on my machine from java however. Can someone please tell me what is the String URL that should be used and specifically what should be the
|
| Java security | 30 Sep 2004 11:05 GMT | 3 |
I havean applet that connects to Oracle osing the thin client. It works when run from IDE. When I try to load it into a web browser I get java.security.AccessControlException: access denied
|
| Partially empty results | 29 Sep 2004 14:55 GMT | 1 |
I have a select like this: String query = ("SELECT A.ID_S, B.ID_P, B." + dato + ", B.VAL, A.DESC_S, C.DESC_P, C.UNM, " + "D.ID_R, D.DESCR_B, C.TIPO_C FROM NHST A, " + tabella + " B, NHPA C, NHRE D WHERE" + " A.ID_S = B.ID_S AND
|
| QUESTION: ODBC | 28 Sep 2004 20:20 GMT | 3 |
I am currently learning Java (yes I know, it was about time to get started). The book I use shows SQL examples reading some small databases (4 columns, 5 rows). All these Java database SQL primitives are meant to work only on JDBC-ODBC compliant databases (it is a 1997 book!). ...
|
| [Hibernate]session.update() calls INSERT SQL statement on a many-to-many association table in DB | 28 Sep 2004 16:51 GMT | 1 |
I have problem with Hibernate's session.update() and it buzzed me for many hours already. I don't understand why and I don't know how to solve it. I really need help. My COURSES table has only 1 record:
|
| Hibernate handling of persistent objects | 28 Sep 2004 16:47 GMT | 1 |
I'm working on an application with Hibernate. When a record is modified, instead of updating that DB row, a new row is inserted and the original row is marked obsoleted, so that all user actions can be traced back when there's need.
|
| sql statement concatenation | 28 Sep 2004 10:46 GMT | 5 |
Can anyone point me to some examples of string concatenation in a SELECT statement. I want to ask user for values and add to runtime cutom string Thanks, scoured web can't find any.
|
| Synchronizing databases | 28 Sep 2004 03:16 GMT | 2 |
I have a MySql database I connect through using mysql-connector-...jar. I need to co-exist with another MySql database in order to get this one job wherein the fields of the other database can map to fields in my database. For example, they have a customers table as does mine. There ...
|
| Empty Result Set | 27 Sep 2004 14:08 GMT | 10 |
I just wondered if there is a way of stopping an exception being raised when my SQL query returns an empty result set? I am using an ODBC connection to a MySQL database. My code for using the result set is shown below:
|
| calling database driver from .jar file | 27 Sep 2004 08:52 GMT | 5 |
I have a java .class file which I have packaged into a .jar file. The class connects to our oracle DB using one of the Oracle thin drivers. This works fine from outside of the jar file. The driver is the
|
| problem with mysql 5.0 and java connector | 26 Sep 2004 11:17 GMT | 1 |
I've a strange message when I try to connect to my db using java connector ( mysql-connector-java-3.1.4-beta ): javax.servlet.ServletException: Cannot connect to MySQL server on localhost:3306. Is there a MySQL server running on the machine/port
|
| jdbc getting started problem | 26 Sep 2004 10:58 GMT | 1 |
Unable to load database driver Details: java.sql.SQLException: No suitable driver This is an error I am getting after trying to make a database connection with java to a access database. I added my database to the odbc system dsn.
|
| How many connections, statements and ResultSets I need for JTree and JTable? | 25 Sep 2004 11:01 GMT | 1 |
I create one of each for every JComponent, becasuse they are all connected. I think I saw that they don't work correctly if I have only one statement. Is this correct or I need only one of each other? ---
|