Thread if anweisung (16 answers)
Opened by Kathrin at 2005-01-24 12:34

polkana
 2005-01-24 14:40
#51206 #51206
User since
2004-06-18
74 Artikel
BenutzerIn
[Homepage] [default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
sub tab_einf  {
my ($lng, $head_type) = @_;
my $type = 'DE';
$type = $head_type if ($head_type);
&check_doctype();
my $dbh = DBI->connect($DBN,$DBUSER,$DBPASS) or die $DBI::errstr;

my $statement_insert="INSERT INTO $TABELLE VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?)";
my $sth_insert=$dbh->prepare($statement_insert) or die $DBI::errstr;
$sth_insert->execute($identnr,'$lng',$doctyp,$docname,$type,$type_???, $date,$ersteller,$werk,$check1,$check2,$check3,$check4) or die $DBI::errstr;
ausgabe();
$sth_insert->finish();
$dbh->disconnect();
}

und dann in der code einsetzen nicht einfach
Code: (dl )
tab_einf;
sondern
Code: (dl )
tab_einf($lang, $type);

Hier gewinnt man möglichkeit mehre sparce einfügen und Codeflexibilitet

Alexander.

View full thread if anweisung