You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Mon, May 10, 2021 at 4:58 AM Samuel Bichsel ***@***.***> wrote:
Dialect: SQLite
failing sql:
WITH new(number, modificationDate, firstName, lastName, languageId, telephoneNumber1, email1, street, city, zipCode, countryId) AS ( VALUES (?,?,?,?,?,?,?,?,?,?,?) )
INSERT OR REPLACE INTO customer (localId, number, modificationDate, firstName, lastName, languageId, telephoneNumber1, email1, street, city, zipCode, countryId)
SELECT old.localId, new.number, new.modificationDate, new.firstName, new.lastName, new.languageId, new.telephoneNumber1, new.email1, new.street, new.city, new.zipCode, new.countryId
FROM new LEFT JOIN customer AS old ON new.number = old.number;
The above statements doe not compile in sqldelight with the error: Cannot
bind unknown types or null. Running it as a SQL statement works fine.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#262>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAMZBQA2RHWI5AVIRT47AYDTM6NZXANCNFSM44QUYGPA>
.
Dialect: SQLite
failing sql:
The above statements doe not compile in sqldelight with the error:
Cannot bind unknown types or null
. Running it as a SQL statement works fine.Scheme:
Helper classes:
The text was updated successfully, but these errors were encountered: