view Lib/IMPL/ORM/Store/SQL.pm @ 44:32d2350fccf9

ORM *Minor fixes *Working tarnsform to sql *Fixes to the sql traits
author Sergey
date Mon, 11 Jan 2010 01:42:00 +0300
parents
children 16ada169ca75
line wrap: on
line source

package IMPL::ORM::Store::SQL;
use strict;
use warnings;

use base qw(IMPL::Object);

use IMPL::Class::Property;

BEGIN {
    public property Connection => prop_all;
}

sub loadObjects {
    my ($this,$rObjects) = @_;
}

sub search {
    my ($this,$query) = @_;
}

1;

__END__

=pod

=head1 DESCRIPTION
Драйвер для SQL баз данных.

=cut