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

this is the code

    PreparedStatement res1 = null;
    String insertUser = "INSERT INTO users (uid,firstname,lastname,score) VALUES (" + 
                                            this.getFbUid() + "," + 
                                            this.getFbFirstName() + "," + 
                                            this.getFbLastName() + ",0)";
    System.out.println(insertUser);
    try
    {
        res1 = connection.prepareStatement(insertUser);
        res1.executeUpdate();
        System.out.println("executed query to db with the message" + res1);
    }
    catch(SQLException e)
    {
        System.out.println("setUserInDb: " +e.getMessage());
        System.out.println("error num: " +e.getErrorCode());
    }`

I'm getting error code 1054:

Unknown column 'Alon' in 'field list' when trying to insert the line "INSERT INTO users (uid,firstname,lastname,score) VALUES (123456,Alon,xyz,0)

In the db I have table users with varchar columns uid, firstname, lastname, and score.
What am I doing wrong?

share|improve this question

2 Answers

up vote 0 down vote accepted

Alon seems or type varchar should be under '

Use Prepared statement rather

share|improve this answer
how to fix my String in java? – Alon Oct 24 '11 at 19:27
Prepared statement <!--> – Jigar Joshi Oct 24 '11 at 19:28
didn't I use it ? see in the code – Alon Oct 24 '11 at 19:32
You didn't use it properly, See here – Jigar Joshi Oct 24 '11 at 19:38

Just as Jigar pointed it out,

When u insert String values into the table you should use the values inside single or double quote(' or "). Eg 'Hello',"Hello".

share|improve this answer
By all means use single quotes: 'Hello'. Double quotes are for quoting object names. I know MySQL allows non-standard quoting, but there is no need to use it if the standard syntax is accepted as well. – a_horse_with_no_name Oct 24 '11 at 22:05

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.