| Thread | Last Post | Replies |
|
| Applet Consideration | 17 Mar 2004 02:17 GMT | 7 |
Hey guys, I was working on this school project and I was doing it just as a straight java swing app connecting to a db. Anywhose, it appears that it needs to be webbased. So, me in all my simplicity, just made the application an applet.
|
| Display image from database | 15 Mar 2004 13:37 GMT | 6 |
I am very new to java. I have some code that goes like this ... <%-- This is the item number of the Image I would like to display --%> String st_Catpart = "123ABC"; <%-- Get Image from Database --%>
|
| Updating a row containgin a CLOB in Oracle with JDBC | 15 Mar 2004 04:28 GMT | 1 |
I need to update a CLOB field in a table with JDBC, using Oracle. Here is the code I have for retrieving the existing value and adding some more text onto the CLOB: try {
|
| [Oracle] How to check for empty ResultSet? | 14 Mar 2004 10:43 GMT | 4 |
I am trying to use while (rs.next()) {...} but there is one hitch -- it seems that Oracle doesn't want to return false,
|
| Regarding retrievel of data | 13 Mar 2004 20:46 GMT | 1 |
We have some complex J2EE applications currently. IN most of the applications, we need to take thousands of rows data from the database.Then in the JSPs, we need to paginate them, means 100 rows per page and then next etc. Each time the connection is established with the database ...
|
| sql reading from file | 13 Mar 2004 10:00 GMT | 2 |
I have a file with all SQL statements e.g : sql_createuser = INSERT INTO users VALUES(username,password,email) sql_removeuser = ... I read the sql statements with the properties get method. But how do I
|
| vertical tab | 11 Mar 2004 18:05 GMT | 4 |
How do I implement the vertical tab (\v) in a java string I have tried '\013' and several other patterns from various sites, they all print a symbols, not a vertical tab Best wishes, Jim
|
| Strange ResultSet.getRow() | 11 Mar 2004 15:08 GMT | 1 |
I have 2 record in a table name "item" in mysql database, and use RecordSet to retrieve that 2 record. i try to get the number of Result using the below method : result.last()
|
| searching for an embedded database | 11 Mar 2004 15:06 GMT | 9 |
Does anyone know a couple of databases that can run WITHIN your java aplication (i.e. embedded) instead of as a separate service (as for example Mysql)??? I've heard of jdbm... is that the database you would recommend?
|
| MS SQL Server JDBC Driver | 11 Mar 2004 04:55 GMT | 2 |
Fellow IT Professionals, I have downloaded and ran the install from Microsoft for the JDBC driver for SQL Server. I have also put the 3 JAR files in the CLASSPATH under environment settings.
|
| Meta data: Invalid column type for Oracle DATE | 10 Mar 2004 19:30 GMT | 3 |
On Oracle tables with columns of type DATE: ResultSetMetaData.getColumnType(colNum) returns 91 which is wrong. DatabaseMetaData.getColumns() tells 93 which is right. Both ResultSetMetaData.getColumnTypeName(colNum) and
|
| newbie question on ResultSet | 10 Mar 2004 17:03 GMT | 1 |
I'm using MySQL as database for my java application.I always use ResultSet to retrieve data from database. I'm thinking a efficient way to browse the retrieve data from a JInternalFrame, so it is better to load all data from a table to a ResultSet
|
| How do I insert a long String into a Clob? Or: How do I create a Clob from scratch? | 10 Mar 2004 11:30 GMT | 2 |
I'm trying to store a a long-ish string (approx 2,000 characters) in a CLOB column in a MySql database, but I can't figure out how to create a Clob object for insertion. All the methods assume you already have a Clob, but Clob is abstract. All the sample code I've found first
|
| finding connection leaks | 10 Mar 2004 07:46 GMT | 5 |
Can anybody recommend a tool that can scan Java code for unclosed connections. In this specific case I am dealing with pretty messy code inherited from the predecessor that requires a clean up due to increasing performance problems.
|
| problem when calling a stored procedure from ms sql 2000 with java | 09 Mar 2004 22:38 GMT | 6 |
I am trying to call a stored procedure from ms sql server 2000 but I cant quite get it working properly. I have made my initial connection to ms sql and my database stored on it I am just completely lost when it comes to calling the procedure. I can call
|