You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.