sub insertAttribute { my ($serverID, $featureID, $value) = @_; my $sqlINS = q{ INSERT INTO attribute VALUES (?, ?, ?) }; $dbh->do ( $sqlINS, undef, $serverID, $featureID, $value ); }