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

NAME

DBIx::SQLEngine::Driver::Trait::NoAdvancedFeatures - For pure-Perl Databases

SYNOPSIS

  # Classes can import this behavior if they don't have many features
  use DBIx::SQLEngine::Driver::Trait::NoAdvancedFeatures ':all';

DESCRIPTION

This package supports SQL database servers which do natively provide any advanced capabilities, like transactions, indexes, or stored procedures.

Note: this feature has been added recently, and the interface is subject to change.

Note: Because of the way DBIx::AnyDBD munges the inheritance tree, DBIx::SQLEngine subclasses can not reliably inherit from this package. To work around this, we export all of the methods into their namespace using Exporter and @EXPORT.

ADVANCED CAPABILITIES

Database Capability Information

The following methods are provided:

dbms_transactions_unsupported()
  $sqldb->dbms_transactions_unsupported() : 1

Capability Limitation: This driver does not support transactions.

dbms_indexes_unsupported()
  $sqldb->dbms_indexes_unsupported() : 1

Capability Limitation: This driver does not support indexes.

dbms_storedprocs_unsupported()
  $sqldb->dbms_storedprocs_unsupported() : 1

Capability Limitation: This driver does not support stored procedures.

SEE ALSO

See DBIx::SQLEngine for the overall interface and developer documentation.

See DBIx::SQLEngine::Docs::ReadMe for general information about this distribution, including installation and license information.