1b231dde81485b7cd1a0ab07e95d07d9202eb5e0
[dbsrgits/SQL-Abstract-2.0-ish.git] / lib / SQL / Abstract / Compat.pm
1 use MooseX::Declare;
2
3 class SQL::Abstract::Compat {
4 }
5
6 =head1 NAME
7
8 SQL::Abstract::Compant - compatibility layer for SQL::Abstrct v 1.xx
9
10 =head1 DESCRIPTION
11
12 This class attempts to maintain the original behaviour of version 1 of
13 SQL::Abstract. It does this by internally converting to an AST and then using
14 the standard AST visitor.
15
16 If so desired, you can get hold of this transformed AST somehow. This is aimed
17 at libraries such as L<DBIx::Class> that use SQL::Abstract-style arrays or
18 hashes as part of their public interface.
19
20 =head1 AUTHOR
21
22 Ash Berlin C<< <ash@cpan.org> >>
23
24 =cut
25
26 1;