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

NAME

DBIx::SQLEngine::Driver::Trait::NoColumnTypes - For Type-less Databases

SYNOPSIS

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

DESCRIPTION

This package supports SQL database servers which do natively provide any column types, storing all numeric and string values in the same way.

About Driver Traits

You do not need to use this package directly; it is used internally by those driver subclasses which need it.

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_column_types_unsupported
  $sqldb->dbms_column_types_unsupported () : 1

Capability Limitation: This driver does not store column type information or enforce type restrictions.

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.