| Thread | Last Post | Replies |
|
| JDBC+SSL? | 16 Dec 2005 09:08 GMT | 1 |
OK, I am working with MySQL and Postgres. Both indicate I can create connections to them using SSL so that data exchanged with them is encrypted while in transit. The question is,"How do I use JDBC to create a secure connection instead of a clear text connection?"
|
| IBM JDBC help! | 14 Dec 2005 09:26 GMT | 1 |
I am trying to use the IBM DB2 Universal Database driver (IBM JDBC package). How do I wrap an Oracle connection within an IBM connection? Is it possible ? I tried searching through the documentation and the Internet, but
|
| Hidden (not visible, but usable) fields in jdbTable | 14 Dec 2005 08:34 GMT | 5 |
I am using jdbTables which shows data from a database. I need to have some fields in the jdbTable for calculation (read: painting the rows with different colors), but they should not be visible to user. I have tried columnX.setWidth(0) and columnX.setHidden(True). These don't ...
|
| DBase IV files | 13 Dec 2005 15:31 GMT | 3 |
I'm using the xbasej class for Java, and I'm trying to open a DBase IV file. I use: DBF aDB = new DBF("...path to file"); Several files work fine, but on one of them I get the following error:
|
| reducing JDBC String creation? | 10 Dec 2005 14:55 GMT | 3 |
With some help from this group, I improved my database throughput quite a bit. However, my code now creates a large number of Strings (approximately 4 million in about 3 minutes) in PreparedStatements. I checked the source of String creation with OptimizeIt and Enerjy's
|
| batch update is sporadically incomplete | 05 Dec 2005 18:42 GMT | 5 |
Sporadically, the last few entries of a batch are not written. I'm writing to a mysql database using JDBC. Here's a short version of my code. Does anyone have suggestions on possible causes or other diagnostics?
|
| java | 04 Dec 2005 10:32 GMT | 2 |
Im working with jdbc on a MSSQL Database. In my java client im executing a stored procedure called myProc on the database. Im doing this with the following code:
|
| HQL query, what am I doing wrong? | 03 Dec 2005 12:35 GMT | 4 |
List results = getHibernateTemplate().find("from Support obj where obj.attributeName = 'B PROT CLASS'"); I get list of Support objects, lets say 10. using spring SupportDAO extending HibernateDaoSupport with Hibernate3
|
| JDBC and outfile/infile | 02 Dec 2005 08:33 GMT | 3 |
I have MySQL and want to dump the contents of a table into a text file then read it back in. Can that be done with JDBC? is each a Query or Update? --------------------- tried ----------------------------
|