Hi All,
I am trying to connect SQL server database through groovy script. The script I am trying in Groovy's "Script Console".
Everytime I'm getting null value error.
Following is the code I'm trying to run in script console.
import groovy.sql.Sql
import java.sql.Driver
def driver = Class.forName('com.microsoft.sqlserver.jdbc.SQLServerDriver').newInstance() as Driver
def props = new Properties()
props.setProperty("user", "jiratesting")
props.setProperty("password", "ricciricci")
def conn = driver.connect("jdbc:sqlserver://1W8N542;databaseName=jira", props)
def sql = new Sql(conn)
try {
sql.eachRow("select count(*) from pro") {
return (it)
}
} finally {
sql.close()
conn.close()
}
Please suggest if anyone knows the answer.
Thank You.
Hi Manu, which version of ScriptRunner and JIRA are you on?
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.