Merge branch 'current/for_cpan_index' into current/dq
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / SQLMaker / SQLite.pm
CommitLineData
09cedb88 1package # Hide from PAUSE
d5dedbd6 2 DBIx::Class::SQLMaker::SQLite;
09cedb88 3
d5dedbd6 4use base qw( DBIx::Class::SQLMaker );
09cedb88 5
10cef607 6#sub _build_renderer_class {
7# Module::Runtime::use_module('Data::Query::Renderer::SQL::SQLite')
8#}
9
09cedb88 10#
11# SQLite does not understand SELECT ... FOR UPDATE
a6b68a60 12# Disable it here
10cef607 13sub _lock_select { '' };
09cedb88 14
151;