#!/usr/local/bin/perl -w
use strict;
use DBI;
my $host='localhost';
my $port=6100;
my $dbh = DBI->connect("dbi:Gigabase:host=$host;port=6100","g", "g")||die;
my $statement='delete from d where a=?';
#{
 my $select=$dbh->prepare($statement)
  || die $dbh->err_msg;
 $select->execute(3);
 $select->finish;
#}
$dbh->disconnect;
