- or download this
INSERT INTO data (skey, svalue) VALUES ('Stuff', 'Ge 1:1-more &stuff&
+here ');
- or download this
$dbh->do("INSERT OR REPLACE INTO data (skey, svalue) VALUES ('Stuff',
+'Ge 1:1-more &stuff& here ''');");
- or download this
$VAR1 = {
'Stuff' => {
...
'skey' => 'Stuff'
}
};
- or download this
$dbh->do(
q/INSERT OR REPLACE INTO data (skey, svalue) VALUES ('Stuff', 'lit
+eral dollar sign: $, literal single quote: '', literal ampersand: &')
+;/
);
- or download this
my $sth = $dbh->prepare(
'INSERT OR REPLACE INTO data (skey, svalue) VALUES (?, ?);'
...
$sth->bind_param(1, $skey);
$sth->bind_param(2, $svalue);
$sth->execute();