NAME
Fey::SQL::Pg - Generate SQL with PostgreSQL specific extensions
VERSION
version 0.004
SYNOPSIS
use Fey::SQL::Pg;
my $insert = Fey::SQL::Pg
->new_insert( auto_placeholders => 0 )
->into( $s->table('User') );
->returning( $s->table('User')->column('user_id'));
DESCRIPTION
Adds some PostgreSQL specific extensions to Fey. For the excat features implemented, see:
AUTHOR
Oliver Charles <oliver.g.charles@googlemail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Oliver Charles.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.