Help for this page

Select Code to Download


  1. or download this
    sub insertAttribute{
        my ($serverID, $featureID, $value) = @_;
        $_ = $dbh->quote($_) for qw($serverID, $featureID, $value);
        my $sqlINS = qq{ INSERT INTO attribute VALUES ($serverID, $feature
    +ID, $value) };
        $dbh->do ($sqlINS);
    }