| Thread | Last Post | Replies |
|
| applet & security | 30 Nov 2003 23:23 GMT | 1 |
I have to connect from my applet to mysql server with administrative privileges (login & password are in applet's code). I connect using mysql-connector: try{Class.forName("com.mysql.jdbc.Driver").newInstance();}
|
| map two data structure | 30 Nov 2003 17:53 GMT | 6 |
Suppose I have class Data1{ public String name; public String address;
|
| Text editor w/JDBC access | 30 Nov 2003 17:31 GMT | 2 |
Rather than writing this from scratch, I am looking to see if there exists code out there which I can use that allows me to essentially edit text, whilst doing a mail merge to a remote database accessed via JDBC. Is anyone aware of such an animal? Thank you, Ike
|
| CLOB -> XML -> DOM -> HTML | 30 Nov 2003 14:06 GMT | 1 |
I am new to XML and Java. My problem is that one table has a Clob type coloumn which infact stores XML data. I want to know the best way of getting the CLOB type, converting it to XML and then converting it to HTML with XSD/XSL. This is all with Java.
|
| server-side PreparedStatement minimum version of connector-j and server | 29 Nov 2003 23:30 GMT | 3 |
what is -the minimum version of connector/j and -the minimum version of mysql server
|
| Problem with JDBC-ODBC connection to MS Access 2000 | 29 Nov 2003 01:46 GMT | 4 |
I am trying to use JDBC-ODBC bridge to connect to a Access 2000 database on a Windows 2000 machine. I have set up the database using the Data Sources utility in Windows 2000. I am using the Java(TM) 2 SDK, Standard Edition
|
| Good intro book on JDBC? | 28 Nov 2003 22:16 GMT | 2 |
Can anyone recommend a good JDBC book? If it helps narrow the list, my knowledge levels are: Java -> Weak (written a few small programs) OOP -> Strong (C++ is easier than English)
|
| AS400 and jbuilder | 28 Nov 2003 18:36 GMT | 3 |
i'm trying to access test database on as400 with com.ibm.as400.access.AS400JDBCDriver. i manage to make it work in runtime with: DriverManager.registerDriver(new com.ibm.as400.access.AS400JDBCDriver());
|
| setting tomcat for datasource dbcp | 26 Nov 2003 20:44 GMT | 1 |
<b>Hi all I am trying to set dbcp as in example http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples-howto.html my server.xml has</b>
|
| Writing to TEXT Field in MS SQL SERVER with MS JDBC Driver | 26 Nov 2003 19:06 GMT | 2 |
Has anyone out there gotten this message java.sql.SQLException: [Microsoft][SQLServer 2000 Driver for JDBC]Invalid parameter binding(s). upon executing a PreparedStatement when using TEXT fields? I am not sure
|
| Why does this query take forever? | 26 Nov 2003 18:40 GMT | 5 |
For some reason, I have a rather large (to me) query, with numerous inner joins, accessing a remote server, and it is taking about twenty times longer than most queries to the same database. The query itself is built programmatically within my application, and
|
| SQL Server 2000 database connection problems: Can ANY one help? | 26 Nov 2003 15:57 GMT | 4 |
Environment: SQL Server 2000, Windows 2000, Eclipse, and Microsoft's SQL Server 2000 driver for JDBC Problem: Connection to any table in my SQL 2000 database hangs. If I stop it, it produces the following exception:
|
| JDBC : SQLException -> "Stream has already been closed" | 24 Nov 2003 14:16 GMT | 2 |
I use the following code to query a column that contains a long data type in an Oracle DB. ******* String SQL = "select .....";
|
| Using statement.execute more than once at the same statement | 24 Nov 2003 14:14 GMT | 1 |
i am starting using jdbc these days. My first tests use something like: Statement stat = connection.getStatement(); stat.execute("SELECT * FROM customer");
|
| JDBC-ODBC tutorial | 23 Nov 2003 23:46 GMT | 1 |
Any of you guys know where a half decent jdbc tutorial is? I'm doing a project for my CPSC class and what I have to do is create a GUI using swing and edit a MS access database using this GUI by utilizing jdbc. Thanks a lot for your help, much appreciated.
|