I am doing a project with the foundation of a large database. This is not a test DB file, but a class with the format as follows:
DataBase.Nodes.Data=[[] for i in range(1,1000)]fe this database combines something like several thousand rows. The Fisrt question is the way I'm efficient, or is it better to use SQL or any other “correct” DB that I have never used. And the main question is - I would like to save mine DataBase classwith the whole record, and then reopen it using Python in a different session. Is it possible which tool should I use? cPickle - it seems, only for lines, any other?
Matlab has a very useful functionality called save workspace - it saves all your variables to a file that you can open in another session - this will be useful for python!
Rafal source
share