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
Currently onlye one query can be executed at the time
Ideally we'd like to have unix-style piping supported
tsellm my.db<<SQL
CREATE TABLE [prompts] (
[prompt] TEXT
);
INSERT INTO prompts VALUES('hello world!');
INSERT INTO prompts VALUES('how are you?');
INSERT INTO prompts VALUES('is this real life?');
INSERT INTO prompts VALUES('1+1=?');
SQL
The text was updated successfully, but these errors were encountered:
Currently onlye one query can be executed at the time
Ideally we'd like to have unix-style piping supported
The text was updated successfully, but these errors were encountered: