Forum >> Programmazione Python >> Database >> Piccolo database condiviso online

Pagina: 1

Buongiorno a tutti, io avrei per motivi di lavoro (non professionale) l’esigenza di avere un db condiviso tra 2/3 pc da localita’ diverse (in realtà sono vicinissime ma non hanno rete comunicante), e con basse/zero esigenze di contemporaneita’.
Che strumenti posso usare per poter dislocare il db e poi con che strumenti software potrei accedervi ?

Chiaramente il progetto è minimale quindi non vorrei usare risorse più’ grandi di me.

Da tener presente la mia (bassa) conoscenza di Python (ma con voglia di imparare) 😀


Se sono OT scusate.

Grazie


--- Ultima modifica di trescon in data 2022-12-22 08:45:19 ---
------
Alberto
For the database, you can use a lightweight database such as SQLite, which is free and open-source, and can be used with Python. To move the database between the PCs, you can use a cloud storage solution such as Dropbox, Google Drive, or Microsoft OneDrive. You can also use FTP and SFTP to transfer the database between computers.




To access the database, you can use a database management system such as SQLiteStudio, or use a Python library such as SQLAlchemy or SQLite3 to access the database directly from Python code.


Pagina: 1



Esegui il login per scrivere una risposta.