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

NAME

RDF::Helper::DBI - Generic RDF::Helper bridge for RDBMS-based Models

SYNOPSIS

  my $dbh = DBI->connect( $dsn, $user, $pass);
  
  my $rdf = RDF::Helper->new(
    BaseInterface => 'DBI',
    ModelName => 'mymodel',
    Namespaces => \%namespaces,
    dbh => $dbh,
    BaseURI => 'http://domain/NS/2004/09/03-url#'
  );

DESCRIPTION

RDF::Helper::DBI is the bridge class that connects RDF::Helper's facilites to RDBMS-based triplestores and should not be used directly.

See RDF::Helper for method documentation

AUTHOR

Kip Hampton, khampton@totalcinema.com

COPYRIGHT

Copyright (c) 2004-2006 Kip Hampton. All rights reserved.

LICENSE

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

SEE ALSO

RDF::Helper RDF::Redland.