On Friday, June 7, 2019 at 5:13:55 AM UTC-7, Rama Musidipalli wrote: > > Good Morning, All. > > Thank you very much, Jeremy. > > I see the execute method of Statement class is returning a boolean > indicating if resultset exists for unknown SQL statement and then can be > fetched using getResultSet(). Is there a way that I can use the "stmt" that > sequel gem uses, so that I can iterate over resultSet? > > https://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html#execute(java.lang.String) >
There is probably a way, but that is an adapter-specific internal API that could change at any time (though such change is unlikely). It's best to use the JDBC API to create your own JDBC Statement object and use that. Thanks, Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sequel-talk. To view this discussion on the web visit https://groups.google.com/d/msgid/sequel-talk/714a2fe2-c963-466f-bd62-275379da38d4%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
