DBIx::Renderer::Postgres - DBI renderer for the Postgres SQL variant |
DBIx::Renderer::Postgres - DBI renderer for the Postgres SQL variant
use DBIx::Renderer ':all'; my $struct = [ ... ]; my $renderer = DBIx::Renderer::get_renderer('Postgres'); print $renderer->create_schema($struct);
This is the renderer for the Postgres dialect of SQL. There's actually
nothing to do, since DBIx::Renderer::Base
is written to output
Postgres' version of SQL, which should be largely compatible with other
SQL versions; hence it all went into the base class.
None known so far. If you find any bugs or oddities, please do inform the author.
Marcel Grünauer <marcel@codewerk.com>
Copyright 2001 Marcel Grünauer. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
perl(1), DBI(3pm), DBIx::Renderer(3pm), DBIx::Renderer::Base(3pm).
DBIx::Renderer::Postgres - DBI renderer for the Postgres SQL variant |