diff options
| author | fukachan <fukachan> | 2001-03-18 01:53:17 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-03-18 01:53:17 +0000 |
| commit | 110d337a58d4952b1161bc2e70ba368ca83df8e0 (patch) | |
| tree | 8c262377f94f42e067e12080e894567a1968c4e3 | |
| parent | 4598b40548818999ead99243b0b8ac21216ccd4b (diff) | |
| download | fml8-snap-20010318.tar.gz fml8-snap-20010318.tar.bz2 fml8-snap-20010318.zip | |
create SQL::Schema:: class for model specific schemasnap-20010318
| -rw-r--r-- | fml/lib/SQL/Schema/toymodel.pm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/fml/lib/SQL/Schema/toymodel.pm b/fml/lib/SQL/Schema/toymodel.pm new file mode 100644 index 00000000..911bb1d5 --- /dev/null +++ b/fml/lib/SQL/Schema/toymodel.pm @@ -0,0 +1,29 @@ +#-*- perl -*- +# +# Copyright (C) 2000 Ken'ichi Fukamachi +# All rights reserved. +# +# $Id$ +# + + +package IO::Adapter::MySQL::toymodel; + +use strict; +use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD); +use Carp; + +=head1 NAME + +IO::Adapter::MySQL::toymodel - toymodel by SQL + +=head1 SYNOPSIS + +=head1 DESCRIPTION + +=head1 METHODS + +=cut + + +1; |
