Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a problem where I'm inserting data into a database. It's returning that 1 row is being inserted, but when I actually check the database, nothing new has actually been inserted.

Here's my update function:

public int update(String sqlStatement) {
    int rows = 0;
    try {
        Statement st = this.conn.createStatement();
        rows = st.executeUpdate(sqlStatement);
        this.conn.commit();
        st.close();
            } catch (Exception err) {
        System.out.println("Got err doing update: " + err.getMessage());
    }   
    return rows;
}

And here's the function calling it via it's object:

            db = new Database();
            int rows = 0;
            String sql = "INSERT INTO tblStudent (firstName, lastName, username, password, isAdmin) ";
         sql += String.format("VALUES ('%s', '%s', '%s', '%s', %d)", fName, lName, username, passwd, isAdmin);
            System.out.println("Trying " + sql);
            if((rows = db.update(sql)) == 0) {
                System.out.println("Could not create new user");
                throw new Exception();
            }
            System.out.println("Rows " + rows);

As I said, it's reporting that a single row is inserted into the DB, but nothing is actually there. The DB is a MS Access DB.

Any help appreciated.

G

share|improve this question
2  
First, use prepare statement not manual concatenation. – h3xStream Aug 11 '10 at 19:59
1  
When you check the database outside of this application, has the applications connection been closed? When you execute the SELECT query from your application with this connection, is the data there? – Jacob Tomaw Aug 11 '10 at 20:14
Before I do the insert, I do a select, checking to see if certain users are present in the DB. This select works fine and correctly gets data from the same table. RE: using the prepare statement. I realise there are other ways of doing this, but I'd like to try and understand why this particular way isn't working. – SynackSA Aug 11 '10 at 20:18

1 Answer

up vote 0 down vote accepted

Okay, fixed the problem.

Seems you have to close the connection. Even if isn't being reused.

I added the following function to the Database class:

    public void close() {
    try {
        this.conn.close();
    } catch (Exception err) {
        System.out.println("Error while closing connection: " + err.getMessage());
    }
}

And then added the close to the other functions in a finally clause:

        try {
            db = new Database();
            int rows = 0;
            String sql = "INSERT INTO tblStudent (firstName, lastName, username, password, isAdmin) ";
            sql += String.format("VALUES ('%s', '%s', '%s', '%s', %d)", fName, lName, username, passwd, isAdmin);
            System.out.println("Trying " + sql);
            if((rows = db.update(sql)) == 0) {
                System.out.println("Could not create new user");
                throw new Exception();
            }
            System.out.println("Rows " + rows);
        } catch (Exception err) {
            System.out.println("Got err in registerUser: " + err.getMessage());
            return false;
        } finally {
            db.close();
        }

Makes me wonder why there's even the option to commit then, since it actually doesn't do a commit even though you've told it to commit.

share|improve this answer
Be aware that this code is vulnerable to SQL injection. Do a simple test with a FistName having a single quote in it. – h3xStream Aug 11 '10 at 20:40
You'll want to make sure that whatever code is run in the db.update() method you're using is also closing any database resources that it's using. – Dante617 Aug 11 '10 at 21:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.