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


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

Index


Code Index:

NAME

Top

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

SYNOPSIS

Top

See SQL::Parser.

DESCRIPTION

Top

This module defines the SQL syntax supported by DBD::Google.


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

package SQL::Dialects::Google;

use strict;
use vars qw($VERSION);

$VERSION = 0.51;

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

[VALID COMPARISON OPERATORS]
=

[VALID DATA TYPES]
VARCHAR

[RESERVED WORDS]
EOC
}
1;