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

Please help me in finding the syntax error, i have tried my best to point out but can't.

 String sql= "insert into ctable ("

        +"id,"
        +"name,"
        +"address,"
        +"phone,"
        +"email,"
        +"sale_Limit )"

        + "values (" +txtid.getText()+ ",'" +txtname.getText()+ "','" +txtaddress.getText()

        +"','" + txtphone.getText()+ "','"+ txtemail.getText()+ "','"+txtsaleLimit.getText()

        + "')";
share|improve this question
2  
What is the error message you are getting? – Erica May 16 '12 at 7:00
1  
what's the error? – Chip May 16 '12 at 7:01
The Error message is : Syntax Error in insert into Statement. – codo May 16 '12 at 7:02
3  
can you check what the sql string becomes? there may be some values missing in your sql and that makes the query incomplete – Nick May 16 '12 at 7:05
1  
Have you checked for a field with a single quote in e.g. a name like "Tim O'Shea"? This will cause your SQL to fail because you are not using parameterised queries (Refer to Jon Skeet's answer) – GarethD May 16 '12 at 7:16
show 4 more comments

6 Answers

up vote 6 down vote accepted

The immediate problem may well be missing quotes.

The bigger problem is that you're including data directly in your SQL. You should be using parameterized SQL instead (via a PreparedStatement), to avoid SQL injection attacks, separate code (SQL) from data (values), and to avoid data loss due to string conversions.

share|improve this answer
thanks Jon for sharing the link too i have found too much than i have expected. – codo May 16 '12 at 7:20

name is reserved word in Access, so you should change column name to others.

As other answer point out, I would recommend you look into PreparedStatement to avoid possible SQL Injection and PreparedStatement will help you escape special character as well, for example ' char in which to avoid SQL syntax error.

Access reserved words.

share|improve this answer

maybe you need a space between "sale_Limit )" and "values"

share|improve this answer
At the very least, that's not true in SQL server and oracle, but I haven't tried with other databases. – Pablo May 16 '12 at 7:29

Forgot the single quotes?

" +txtid.getText()+ "
share|improve this answer
what if id is integer...its sysntax error....... – Pranay Rana May 16 '12 at 7:03
1  
id is always an integer, that should not have a single quotes – Nick May 16 '12 at 7:03
It is expected to be an integer identifier, so that would not be an issue. – Luca Geretti May 16 '12 at 7:03
1  
I doubt it, I bet the id field is a number which doesn't require qoutes. – Ash Burlaczenko May 16 '12 at 7:03
@Nick, id fields don't have to be number types. – Ash Burlaczenko May 16 '12 at 7:04
show 4 more comments

INSERT INTO table_name ( field1, field2,...fieldN ) VALUES ( value1, value2,...valueN );

Remove the inverted commas and addition sign from the field name portion.

share|improve this answer
Have you noticed that he is building a string in java? – Pablo May 16 '12 at 7:32

+"sale_Limit )" - should be space, change to:

+"sale_Limit ) "

"values (" +txtid.getText()+ ",'" - missing quotes, change to:

"values ('" +txtid.getText()+ ",'"
share|improve this answer
-1 duplicate of other answers and missing closing quote (if quotes were a problem) – deathApril May 16 '12 at 7:13

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.