view Lib/IMPL/SQL/Types.pm @ 197:6b1dda998839

Added IMPL::declare, IMPL::require, to simplify module definitions IMPL::Transform now admires object inheritance while searching for the transformation Added HTTP some exceptions IMPL::Web::Application::RestResource almost implemented
author sergey
date Thu, 19 Apr 2012 02:10:02 +0400
parents 76515373dac0
children
line wrap: on
line source

package IMPL::SQL::Types;
use strict;
use warnings;

require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(&Integer &Varchar &Float &Real &Text &Binary &DateTime);

require IMPL::SQL::Schema::Type;

sub Integer() {
    return IMPL::SQL::Schema::Type->new(name => 'INTEGER');
}

sub Varchar($) {
    return IMPL::SQL::Schema::Type->new(name => 'VARCHAR', maxLength => shift);
}

sub Float($) {
    return IMPL::SQL::Schema::Type->new(name => 'FLOAT', scale => shift);
}

sub Real() {
    return IMPL::SQL::Schema::Type->new(name => 'REAL');
}

sub Text() {
    return IMPL::SQL::Schema::Type->new(name => 'TEXT');
}

sub Binary() {
    return IMPL::SQL::Schema::Type->new(name => 'BINARY');
}

sub DateTime() {
    return IMPL::SQL::Schema::Type->new(name => 'DATETIME');
}

1;