in reply to Re^2: SQLite select wont' return records
in thread SQLite select won't return SELECTed records
I can't use die because all errors need to be logged to a file.
Actually, no. Think of die as though it were an exception throw and use eval to catch errors:
eval { ... return 1; } or do { my $err = $@; WriteErr("$err"); };
|
|---|