I need to insert value which is stored in "name"
variable into the database. Till Now, i have tried below code ,but its not working.
String name="Aswini";
String query="INSERT INTO STUDENT"+"VALUES (1239,'name', 'IT')";
statement.executeUpdate(quer);
Can any one help me in this,thanks in advance.