Help for this page

Select Code to Download


  1. or download this
    create table db_column
    ( tab_id                int             not null
    , col_num               int             not null
    ...
        , col_num
        )
    )
    
  2. or download this
    my $addcol = $dbh->prepare(
        "insert into db_column
        ( tab_id
    ...
            $ck->{scale},
            ($ck->{nullity}? 'Y' : 'N'))
                    or warn "Couldn't insert into db_column: $DBI::errstr"
    +;