Closed Epithumia closed 3 years ago
The %LOAD magic command doesn't behave like documented.
For example, this works fine (with testdb.db existing in the same folder as the notebook):
%LOAD testdb.db
Giving it an absolute/relative path works as well
%LOAD /absolute/path/to/testdb.db
On the other hand, this doesn't work:
%LOAD "testdb.db"
Result: "Error: The path doesn't exist." Same issue with single quotes, with absolute or relative paths.
huh, thank you for capturing this! Feel free to open a PR to change it :)
This is fixed by https://github.com/jupyter-xeus/xeus-sqlite/pull/116
The %LOAD magic command doesn't behave like documented.
For example, this works fine (with testdb.db existing in the same folder as the notebook):
Giving it an absolute/relative path works as well
On the other hand, this doesn't work:
Result: "Error: The path doesn't exist." Same issue with single quotes, with absolute or relative paths.