https://bugs.kde.org/show_bug.cgi?id=378676
Ralf Habacker <ralf.habac...@freenet.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ralf.habac...@freenet.de Status|UNCONFIRMED |CONFIRMED Ever confirmed|0 |1 --- Comment #2 from Ralf Habacker <ralf.habac...@freenet.de> --- (In reply to Gary from comment #1) > Here is the exact SQL in my 2), error is in 4th from last field: The problem here is that the implementation of creating the statements creates a template first similar to the constructed line below: INSERT INTO kmmFileInfo (hiPayeeId, hiPayeeIdentifierId) VALUES (:hiPayeeId, :hiPayeeIdentifierId); and then replace the variable name :hiPayeeId' with 'NULL' which results into INSERT INTO kmmFileInfo (hiPayeeId, hiPayeeIdentifierId) VALUES (NULL, NULLIdentifierId); and let the remain replace of ':hiPayeeIdentifierId' unfinished. -- You are receiving this mail because: You are watching all bug changes.