Hi, If the limit is only set in the JDBC API, then you can't (I think). But why would you need to?
If the limit is set in the query, then it's part of the explain plan: EXPLAIN SELECT * FROM TEST ORDER BY ID LIMIT 1; PLAN SELECT TEST.ID, TEST.NAME FROM PUBLIC.TEST /* PUBLIC.PRIMARY_KEY_2 */ ORDER BY 1 LIMIT 1 /* index sorted */ Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
