Merge branch 'current/for_cpan_index' into current/dq
[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 #sub _build_renderer_class {
7 #  Module::Runtime::use_module('Data::Query::Renderer::SQL::SQLite')
8 #}
9
10 #
11 # SQLite does not understand SELECT ... FOR UPDATE
12 # Disable it here
13 sub _lock_select { '' };
14
15 1;