jamlamberti / Py4FinOpt

Python for Financial Optimization
GNU General Public License v3.0
1 stars 3 forks source link

sqlite support #3

Closed jamlamberti closed 8 years ago

jamlamberti commented 8 years ago

Should not require a MySQL instance. If available, we should be able to leverage it, otherwise just use a local sqlite instance.

As a result, MySQL drivers may not be installed on the system so that dependency needs to be removed.

jamlamberti commented 8 years ago

Pushed a script for loading a MySQL dump into an SQLite instance. sqlite_manager was added using sqlite3. It seems to have the same functionality as the MySQL implementation, but might not have full coverage of certain edge cases.