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
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to