Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLMaker / SQLite.pm
CommitLineData
09cedb88 1package # Hide from PAUSE
d5dedbd6 2 DBIx::Class::SQLMaker::SQLite;
09cedb88 3
4a233f30 4use warnings;
5use strict;
6
d5dedbd6 7use base qw( DBIx::Class::SQLMaker );
09cedb88 8
9#
10# SQLite does not understand SELECT ... FOR UPDATE
a6b68a60 11# Disable it here
1645dd48 12sub _lock_select () { '' };
09cedb88 13
141;