Forum: Java Jan 13th, 2009 |
| Replies: 4 Views: 1,502 This is in a Java Helper class only and is not extending a servlet. |
Forum: Java Jan 12th, 2009 |
| Replies: 4 Views: 1,502 For my Java class with resultset I am trying to get the request.getParameter value.
Please advise if this is the correct way use the request object in a Java class because I cant seem to get any... |
Forum: Java Dec 9th, 2007 |
| Replies: 1 Views: 1,671 I have a class that fetches a record but dont think I need to use List object because I am fetching one record and not an array of records.
public List getRecords(){
ResultSet rs =... |
Forum: Java Nov 21st, 2007 |
| Replies: 2 Views: 1,853 |
Forum: Java Nov 19th, 2007 |
| Replies: 2 Views: 1,853 I have a Date insert that is formatted into an Oracle 9i database and it works.
But I had to make the Date variable a varchar2 in Oracle to get it to work:
java.sql.Timestamp myd = new... |
Forum: Java Nov 13th, 2007 |
| Replies: 3 Views: 823 Thanks for the info. I made some changes and I hope this is okay?
public class DbWork
{
private Connection connection;
public DbWork() {
connection = new... |
Forum: Java Nov 12th, 2007 |
| Replies: 3 Views: 823 I created a Java class that inserts and updates an Oracle 9i database. I am running single insert and single update statements.
The below is what I have been using and was wondering if it is... |