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
(rcd-sql "INSERT INTO businesses (businesses_company, businesses_name, businesses_description,
businesses_url, businesses_tag1, businesses_tag2, businesses_tag3)
VALUES ($1, $2, $3, $4, $5, $6, $7)"
cf-db company name description url tag-1 tag-2 tag-3)
If tag-1 above is nil then it would b good for emacs-libpq to understand nil as NULL as there is now way to provide NULL as parameter. It means I have to use format before providing SQL to module.
IMHO it is better providing parameters to module rather than using format.
I would like to provide parameter NULL to:
UPDATE table SET column = $1
And currently providing "NULL" as string does not work. Is there any existing solution?
The text was updated successfully, but these errors were encountered: