Thank you, David, but with SQLite I have auto-commit.
However, your response kicked several synapses into gear and I took a look at permissions..... I'm so red-faced! My directory was 755 and the webserver had read-only permission.
I'm fixed and all is working as it should be.
Pardon me for posting a non-problem!
Appreciatively,
Walt | [reply] |
$dbh->commit? Oh, yes. But before I'd do a $sth->finish.
--shmem
_($_=" "x(1<<5)."?\n".q·/)Oo. G°\ /
/\_¯/(q /
---------------------------- \__(m.====·.(_("always off the crowd"))."·
");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}
| [reply] [d/l] [select] |
| [reply] |
$sth->finish() is relevant only to SELECT and other data-returning calls and only then when the data has not been fully fetched. It has no relevance to an UPDATE statement and should *not* be used in this case.
| [reply] |