On Tuesday, July 21, 2020 at 9:07:15 AM UTC-7, Charles Monteiro wrote: > > well, that's what I mean i only make a request for getMetaData > > stmnt = conn.createStatement > rs = stmnt.executeQuery 'select * from my_foreign_table' > meta = rs.getMetaData >
That's getMetaData on the result set, not on the connection. JDBC DatabaseMetaData is different than JDBC ResultSetMetaData. This needs to work with DatabaseMetaData. 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 view this discussion on the web visit https://groups.google.com/d/msgid/sequel-talk/77a77d7a-d511-4a89-bfe7-d891ed074d59o%40googlegroups.com.
