I am using Groovy Sql to fetch results. This is the output from my Linux box.

%isql -U abc -P abc -S support
1> sp_configure 'number of open partitions'
2> go
 Parameter Name                 Default     Memory Used Config Value    Run Value    Unit                 Type
 ------------------------------ ----------- ----------- ------------  ------------ -------------------- ----------
 number of open partitions              500        5201         5000          5000 number               dynamic

(1 row affected)
(return status = 0)
1>

I am using groovy code

def sql = Sql.newInstance("jdbc:abc:sybase://harley:6011;DatabaseName=support;",dbuname,dbpassword,Driver)
sql.eachRow("sp_configure 'number of open partitions'"){ row ->
        println row.run_value
    }

but it gives me

Exception in thread "main" java.sql.SQLSyntaxErrorException: [abc][Sybase JDBC Driver]Invalid column name: run_value

So it says it cannot get the speciied columns, is there a way it can fetch the result and display?

Update

I used the below code

sql.eachRow("sp_configure 'number of open partitions'"){ row ->
            println row
    }

and it gives me

[Parameter Name:number of open partitions     , Default:        500, Memory Used:       5201, Config Value:        5000, Run Value:        5000, Unit:number              , Type:dynamic   ]

How can I get Run Value? (since it has a space in it)

row.Run Value will not work for sure

link|improve this question

Does println row.Type work? – aF. Jan 17 at 13:01
@aF: does not work – Abhishek Simon Jan 18 at 6:21
feedback

2 Answers

up vote 2 down vote accepted

Does this work? Querying the meta-data for the column name and getting the value by index:

sql.eachRow("sp_configure 'number of open partitions'"){ row ->
  (1..row.getMetaData().columnCount).each {
    println "${row.metaData().getColumnName( it )} = ${row[ it ]}"
  }
}

Or, to get the column directly

row.'Run Value'
link|improve this answer
it gives me Exception in thread "main" java.sql.SQLException: [informatica][SQLServer JDBC Driver]Invalid column name: metaData exception – Abhishek Simon Jan 18 at 4:34
Please see my update, how to get column names having space in it? – Abhishek Simon Jan 18 at 6:51
1  
Try row.'Run Value' – tim_yates Jan 18 at 6:53
Thanks it worked – Abhishek Simon Jan 18 at 6:58
@AbhishekSimon updated my answer to fix the metaData problem, and add this as an answer :-) Good luck! – tim_yates Jan 18 at 8:57
show 1 more comment
feedback

You may use a DataSet and/or read the metadatas.

Read it in the book

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.