vote up 2 vote down star

I've looked in the "undocumentation", and I can see how to create a coldfusion.sql.QueryTable from a ResultSet, but not the other way around. So, how can I extract the java.sql.ResultSet from a ColdFusion ( coldfusion.sql.QueryTable ) query object?

flag

Out of interest what are you trying to do with the resultset that you need the java.sql.resultset for? – Sam Farmer Apr 23 at 16:30
I'm trying to use some existing java code to manipulate my query, however the code takes in a java.sql.ResultSet – THE Joe Zack Apr 24 at 14:52

2 Answers

vote up 4 vote down check

coldfusion.sql.QueryTable implements javax.sql.RowSet, which extends java.sql.ResultSet

Thus, as you discovered, you don't need to do anything. A ColdFusion query is already a Java ResultSet.

link|flag
vote up 2 vote down

Turns out all I had to do was pass in my coldfusion.sql.QueryTable object...don't know why it works, unless ColdFusion is doing some sort of magic casting under the hood.

link|flag

Your Answer

Get an OpenID
or

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