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
Just a small note regarding 1: In the case where we are asked to load an already existing table, we should add a drop trigger if exists statement before the create table if not exists statement.
Anecdotally, I'm finding
rltbl load
to be slower than I expect. There are two things that I think will help:CREATE TRIGGER
until afterINSERT
INSERT
multiple rows at a time, limited by the number of parameters allows in a SQLite query (see Splitup code #9 https://www.sqlite.org/limits.html)The text was updated successfully, but these errors were encountered: