I am trying to set up a Scriptrunner script to access a sql server database outside of JIRA. I am using the script console to attempt to execute the following code:
import java.sql.*; import java.util.Date; import groovy.sql.Sql; import com.atlassian.crowd.embedded.api.User; import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.jira.user.ApplicationUser; import com.atlassian.jira.issue.Issue; import org.apache.log4j.Logger; import org.apache.log4j.Level; def log = Logger.getLogger("com.acme.CreateSubtask"); log.setLevel(Level.DEBUG); ApplicationUser appUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser(); User user = appUser.getDirectoryUser(); def dDate = new Date().format('MM/dd/yyy'); def driver = Class.forName('com.microsoft.sqlserver.jdbc.SQLServerDriver').newInstance() as Driver; def props = new Properties(); props.setProperty("user", "user"); props.setProperty("password", "password"); def conn = driver.connect("jdbc:sqlserver://myserver/mydb", props); def sql = new Sql(conn); sql.close(); conn.close();
I have put the sqljdbc4.jar file in the JIRA/lib directory as I found on this discussion site, but it is giving me the java.lang.ClassNotFoundException: com.microsoft.sqlserver.jdbc.SQLServerDriver error. I have tried to find out how to fix this but nothing seems to be working. I have tried putting this file in different locations, and setting the CLASSPATH environment variable but nothing is working. Do i need to install the .jar file somehow? What am I missing that is keeping this from making the sql server connection?
I should have posted this sooner, but I found the solution. First, after doing some trial and error testing, I found that I needed the sqljdbc4.jar file. (I am connecting to SQL Server 2005.) I also found I had to copy it to the C:\Program Files\Atlassian\JIRA\lib directory. I also didn't need to put in the CLASSPATH variable.
So there isn't anything to "install", you just have to know which is the right version of the sqljdbc file you need and that it goes in the JIRA/lib directory where you have JIRA installed on your server.
I can see that the driver in question is available in a public maven repo. What if you tried getting the jar file via @Grab?
// https://mvnrepository.com/artifact/com.microsoft.sqlserver/sqljdbc4 @Grapes( @Grab(group='com.microsoft.sqlserver', module='sqljdbc4', version='4.0') ) import com.atlassian.crowd.embedded.api.User import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.user.ApplicationUser import groovy.sql.Sql import org.apache.log4j.Level import org.apache.log4j.Logger import java.sql.Driver def log = Logger.getLogger("com.acme.CreateSubtask") log.setLevel(Level.DEBUG) ApplicationUser appUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser() User user = appUser.getDirectoryUser() def dDate = new Date().format('MM/dd/yyy') def driver = Class.forName('com.microsoft.sqlserver.jdbc.SQLServerDriver').newInstance() as Driver def props = new Properties() props.setProperty("user", "user") props.setProperty("password", "password") def conn = driver.connect("jdbc:sqlserver://myserver/mydb", props) def sql = new Sql(conn) sql.close() conn.close()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.