Code Comments
Programming Forum and web based access to our favorite programming groups.i want to use two result sets in my coding like:
rs = st.executeQuery("select qty from instance where instance_name
='kvm' ");
rs.first();
rs1= st.executeQuery("select status from reservation where
instance_name='kvm' ");
rs1.first();
i m not able to use it like this, its generating errors. please tell
how can i do this.
Post Follow-up to this messageuse two statement object...st1 and st2
st1.executeQuery("firstQuery");
st1.executeQuery("secondQuery");
Post Follow-up to this messageuse two statement object...st1 and st2
st1.executeQuery("firstQuery");
st2.executeQuery("secondQuery");
Post Follow-up to this messageuse two statement object...st1 and st2
st1.executeQuery("firstQuery");
st2.executeQuery("secondQuery");
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread
Powered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.