![]() |
SQlite database portable? - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: SQlite database portable? (/thread-12142.html) |
SQlite database portable? - PythonWriter - Aug-11-2018 I want to use SQLite for my database, but how portable is it? Could I take my python script (or executable if I wrap it?) and my database to a new computer? RE: SQlite database portable? - Larz60+ - Aug-11-2018 Quote:Could I take my python script (or executable if I wrap it?) and my database to a new computer?Very portable, and all contained in a single file, so can easily be packaged with code. |