Thanks a lot, whoever it was days ago in #perl who tried to come off as knowledgeable by saying "How do you know it's not Perl doing it", when I was asking about SQLite's behavior, because I was right in the first place. Now I've spent all my coding time in something like four days wasting my time trying to force Perl to do something when it was probably already doing it.
So. How on Earth do I get SQLite to behave? Anyone?
Defaults? (Score:1)
First, this looks like it may be affecting you.
Then, a few more lines down...
So, I'm wondering if the column type is defaulting
SQL_BLOB (Score:1)
The solution was to bind the data, not with SQL_VARCHAR, but with SQL_BLOB:
$sth->bind_param(3, $data, SQL_BLOB);You are a superstar (Score:1)
Similar experience, DBI+SQLite3 aggrave problem (Score:1)