Thanks.  I'm still unable to get SQLite 3.15.0 to fail, in any way,
using your schema and data.  Do you have any further hints on how I
can cause the problem to be expressed?

Is assertion fault reliably reproduced on your system?

On 11/1/16, mark <no...@null.net> wrote:
> On Tue Nov 01, 2016 at 09:21:04AM -0400, Richard Hipp wrote:
>>
>> The text of the SQL that is being prepared got cut off.  Can you
>> please send me the complete SQL statement that is being run at the
>> point of the error?
>
>     INSERT INTO
>         func_begin_change(
>             author,
>             author_contact,
>             author_contact_method,
>             author_shortname,
>             id,
>             lang,
>             mtime,
>             mtimetz,
>             parent_id
>         )
>     VALUES
>         (
>             ?,
>             ?,
>             ?,
>             ?,
>             ?,
>             ?,
>             ?,
>             ?,
>             ?
>         )
>     ;
>
> At least that is what I am passing to Perl's DBD::SQLite prepare()
> method. I am then binding the following values before running execute:
>
>     $VAR1 = [
>               'Mark Lawrence',
>               'em...@address.net',
>               'email',
>               'ML',
>               13,
>               'en',
>               '1478010282201',
>               3600000,
>               undef
>             ];
>
> I presume that the underlying DBD driver using SQLite's bind api and
> not replacing '?' with values, but I haven't checked for sure.
>
> --
> Mark Lawrence
>


-- 
D. Richard Hipp
d...@sqlite.org
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to