The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Fey::SQL::Pg - Generate SQL with PostgreSQL specific extensions

SYNOPSIS

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:

Fey::SQL::Pg::Insert
Fey::SQL::Pg::Delete

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.