Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Groovy Script to connect SQL server

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.

 

 

 

 

 

1 answer

Suggest an answer

Log in or Sign up to answer
1 vote
Joshua Yamdogo @ Adaptavist
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Oct 17, 2017

Hi Manu, which version of ScriptRunner and JIRA are you on?

TAGS
AUG Leaders

Atlassian Community Events