The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Fey::FakeDBI - Just enough of the DBI API to fool Fey

SYNOPSIS

  my $select = Fey::SQL->new_select();

  $select->select(...)->where(...);

  print $select->sql( 'Fey::FakeDBI' );

DESCRIPTION

This class provides just enough of the DBI API to use when Fey needs a DBI object for quoting SQL statements. It implements the quote() and quote_identifier() methods only.

It exists solely to allow some internal API re-use for Fey, and you should never need to use it explicitly.

AUTHOR

Dave Rolsky, <autarch@urth.org>

BUGS

See Fey for details on how to report bugs.

COPYRIGHT & LICENSE

Copyright 2006-2008 Dave Rolsky, All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.