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
My client uses (Azure) SQL Server so I want to add support in fulcro-rad-sql.
One of the issues I encountered was during insertion of new rows. It fails due to SQL syntax differences. It seems that ANSI standard is NEXT VALUE FOR sequence while PostgreSQL syntax is NEXTVAL(seq). Surprisingly MS SQL Server follows ANSI here.
Patch and more issues will follow.
The text was updated successfully, but these errors were encountered:
My client uses (Azure) SQL Server so I want to add support in
fulcro-rad-sql
.One of the issues I encountered was during insertion of new rows. It fails due to SQL syntax differences. It seems that ANSI standard is
NEXT VALUE FOR sequence
while PostgreSQL syntax isNEXTVAL(seq)
. Surprisingly MS SQL Server follows ANSI here.Patch and more issues will follow.
The text was updated successfully, but these errors were encountered: