columns_introspection.rb

Path: lib/sequel/extensions/columns_introspection.rb
Last Update: Thu Oct 06 05:01:14 +0000 2011

The columns_introspection extension attempts to introspect the selected columns for a dataset before issuing a query. If it thinks it can guess correctly at the columns the query will use, it will return the columns without issuing a database query. This method is not fool-proof, it‘s possible that some databases will use column names that Sequel does not expect.

To enable this for a single dataset, extend the dataset with Sequel::ColumnIntrospection. To enable this for all datasets, run:

  Sequel::Dataset.introspect_all_columns

[Validate]