Hi i have a requirement to insert values into sql server table in my jira plugin , i created a new table with three columns , i wrote the following code to insert values into database table , but the values are not inserting , following is my code snipet
namevalue = getName(); desvalue = getDescription(); roleValue = getRole(); Class.forName("net.sourceforge.jtds.jdbc.Driver" ); Connection con =DriverManager.getConnection("jdbc:jtds:sqlserver://localhost:1433/jiradb","jirauser","jirauser"); log.info("test connection.."); String query = "insert into jiradb.dbo.testworklog values(namevalue,desvalue,rolevalue)"; Statement stmt = con.createStatement(); stmt.executeQuery(query); log.info("values inserted in database table.. "); con.close();
Can any body guide me where i did the mistake .
Thanks in advance
You should use your variables in the query string, like this :
String query = "insert into jiradb.dbo.testworklog values("+namevalue+","+desvalue+","+rolevalue+")";
Best regards
Peter
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.