in reply to Update Sqlite References
I guess the problem was in WHERE ID=$ID_read. Using the following is okay:
my $sth = $dbh->prepare( 'update Data set Tag1=?, Tag2=? where ID=?' ); $sth->execute(StandardizeString($Tag1),StandardizeString($Tag2), $ID +_read);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Update Sqlite References
by NetWallah (Canon) on Jan 06, 2017 at 05:37 UTC |