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
I'm working on an application where I have a schema with an INTEGER PRIMARY KEY, and when I load in a dataframe where a value in the primary key column already exists in the table, I'd like the load! function to replace the existing row in the database with a new row from the dataframe.
I got it to work by essentially copying the load! code, and deleting the INSERT keyword, and placing the REPLACE keyword in its place. It would be really nice if the library could support this functionality.