SQL::Dialects::iPod - iPod config file for SQL::Parser


DBD-iPod documentation Contained in the DBD-iPod distribution.

Index


Code Index:

NAME

Top

 SQL::Dialects::iPod -- iPod config file for SQL::Parser

SYNOPSIS

Top

See SQL::Parser.

DESCRIPTION

Top

This module defines the SQL syntax supported by DBD::iPod. We allow only SELECT commands (iPod is read-only), and comparison operators may be one of (=, <, >, <=, >=, LIKE).


DBD-iPod documentation Contained in the DBD-iPod distribution.

package SQL::Dialects::iPod;
use strict;
our $VERSION = '0.01';

sub get_config {
return <<EOC;
[VALID COMMANDS]
SELECT

[VALID COMPARISON OPERATORS]
=
>
<
>=
<=
LIKE

[VALID DATA TYPES]

[RESERVED WORDS]
EOC
}

1;