Ensure _dbi_attrs_for_bind/bind_attribute_by_data_type are called after connecting
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLMaker / SQLite.pm
1 package # Hide from PAUSE
2   DBIx::Class::SQLMaker::SQLite;
3
4 use base qw( DBIx::Class::SQLMaker );
5
6 #
7 # SQLite does not understand SELECT ... FOR UPDATE
8 # Disable it here
9 sub _lock_select () { '' };
10
11 1;