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
for MonetDBlite these queries are all executed on the same database:
monetdbe.sql('CREATE TABLE pylite00 (i INTEGER)')
monetdbe.sql('INSERT INTO pylite00 VALUES (1), (2), (3), (4), (5)')
result = monetdbe.sql('SELECT * FROM pylite00')
because how we manage multiple connection with monetdbe, every statement is executed in a new in-memory database.