Acme-BeyondPerl-ToSQL
view release on metacpan or search on metacpan
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: Acme-BeyondPerl-ToSQL
version: 0.01
version_from: lib/Acme/BeyondPerl/ToSQL.pm
installdirs: site
requires:
DBD::SQLite: 0
DBI: 0
Test::More: 0
distribution_type: module
generated_by: ExtUtils::MakeMaker version 6.28
Acme/BeyondPerl/ToSQL version 0.01
==================================
Your RDBMS will calculate instead of Perl thanks to this module.
INSTALLATION
To install this module type the following:
perl Makefile.PL
make
make test
make install
DEPENDENCIES
This module requires these other modules and libraries:
lib/Acme/BeyondPerl/ToSQL.pm view on Meta::CPAN
package Acme::BeyondPerl::ToSQL;
use strict;
use DBI;
use Carp;
our $VERSION = 0.01;
our $DEBUG = 0;
my $Dbh; # database handle
my $Type; # rdbm type
END {
$Dbh->disconnect()
}
##############################################################################
sub import {
my $class = shift;
my %hash = %{ $_[0] } if(@_ == 1);
( run in 1.708 second using v1.01-cache-2.11-cpan-df04353d9ac )