- or download this
sqlite> .schema
CREATE TABLE info (
...
Other
);
sqlite>
- or download this
sqlite> select * from info where key = 'ScottyZ';
ScottyZ|ScottyZ||pics/ScottyZ.jpg|thumbs/ScottyZ.jpg|lightsteelblue|ni
+ce||||||||
sqlite>
- or download this
my $cmd = "select * from info where key = $key_sel";
$sth = $dbh->prepare($cmd);
...
my $key = $row[0];
}
- or download this
DBD::SQLite::st execute failed: no such column: ScottyZ at ./ztkdb1d l
+ine 395.
Tk::Error: dbih_setup_fbav: invalid number of fields: 0, NUM_OF_FIELDS
+ attribute probably not set right at ./ztkdb1d line 398.
main::browseThis at ./ztkdb1d line 398
- or download this
print "$key_sel\n";
my $cmd = "select * from info";
...
my $key = $row[0];
}