| Thread | Last Post | Replies |
|
| drivers for mysql | 25 Jan 2004 11:53 GMT | 2 |
i was wondering where i can find the driver for connecting to a mysql database from java I have tried org.gjt.mm.mysql.Driver
|
| what does url mean in the parameter list in function DriverManager.getConnection? | 25 Jan 2004 03:06 GMT | 2 |
i'm a newbie,:-P i know it's a simple problem ,but i'm lack of the books about it, and the manual of java api doc confused me. can someone help me?
|
| sql explorer | 24 Jan 2004 22:51 GMT | 1 |
Do you know some nice sql explorer?
|
| db link | 22 Jan 2004 17:01 GMT | 1 |
I 'm working with 2 databases Oracle v9.2 : DB1 and DB2. I setup a database link from DB1 to DB2. I've created a SP which selects tableA from DB1 and tableB from DB2. This sp works fine from an sql+ session on the DB1 server.
|
| Business classes | 22 Jan 2004 15:04 GMT | 1 |
I am facing the following issue: use disconnected data in JAVA. More precisely, I need to: 1) do a SELECT (I can use a java.sql.ResultSet) 2) populate an object (e.g., a Vector) of items representing the DB rows I
|
| Callable Statements | 21 Jan 2004 20:47 GMT | 3 |
Knows anyone about calling Stored Procedures in Java? Sample-Src: I try to call a Procedure in MSSQL Server 2000 String sql = "{? = call " + strProc + "(?,?,?)";
|
| DriverManager vs. DataSource? | 21 Jan 2004 09:25 GMT | 2 |
I've been working with some code that accesses a MySQL database with plans to use it in some web applications (either servlets or JSPs.) I started with some old code that uses the java.sql.DriverManager class to establish the connection. Looking at some code in the
|
| Java Certification Tutor | 20 Jan 2004 13:29 GMT | 4 |
I just graduated from a local Saint Louis University and now im looking to pass my Sun Java Certification test. I was wondering if there is anyone in the Saint Louis area who has passed this test and is willing to tutor me. If anyone is interested or has any leads or
|
| Please help ,I dont know what is the problem in my code? | 19 Jan 2004 21:24 GMT | 3 |
I have a problem relate to java and database. Could anyone answer me ?Please see the following code. import java.sql.*; public class Result {
|
| Get list of databases from JNDI | 19 Jan 2004 16:11 GMT | 3 |
I use JNDI and Datasource to connect to my MySQL databases, like this: public void open(String name) { Context context; try {
|
| Data access concepts | 19 Jan 2004 16:01 GMT | 2 |
I have spend some time to investigate the different concepts of O/R-mapping, JDO and entity beans (EJB) for accessing relational databases in java programming. I may be very conservative, but I can't see that these tools reduces the time that have to be spent on doing
|
| Broken ResultSet with DB2 and JDBC | 19 Jan 2004 11:35 GMT | 7 |
I have a serious problem, hopefully you can help: I'm executing a simple select Statement like "Select * from <table> where <column> = A". The effect is that I can read several rows correctly but in one of the last
|
| Problem with ACCESS | 17 Jan 2004 23:40 GMT | 1 |
I have a project in Java JDBC, I made a connection with an ACCESS base. When I want to insert a value in may table, Java send no exception, but, there's no new value in may table. Is there someone how can help me? Thanks for your answer.
|
| Prepared statement with ' problem | 16 Jan 2004 21:10 GMT | 2 |
Good Morning, I've this prepared statement PreparedStatement pstm = " select domicilio from anagrafe where id_struttura IN (?) "
|
| j2sdk1.4.2_03 getXXX() methods in ResultSet | 16 Jan 2004 19:38 GMT | 1 |
I don't remember it being like this when using ResultSets in the past, but when using j2sdk1.4.2_03 on Windows NT, it seems that I can only call a rs.getXXX() method once per iteration. For example, if I do: while (rs.next()) {
|