我会推荐SQLite。默认的 Python 安装已经有它的绑定。
要使用安装适当的SQLite Windows安装程序。
要创建数据库,您可以执行以下操作(来自 sqlite3 文档):
import sqlite3
conn = sqlite3.connect('example.db')
c = conn.cursor()
# Create table
c.execute('''CREATE TABLE stocks
(date text, trans text, symbol text, qty real, price real)''')
# Insert a row of data
c.execute("INSERT INTO stocks VALUES ('2006-01-05','BUY','RHAT',100,35.14)")
# Save (commit) the changes
conn.commit()
# We can also close the cursor if we are done with it
c.close()
要导入 Matlab,您可以使用mksqlite。
有关更多信息,您可能需要结帐:
http: //labrosa.ee.columbia.edu/millionsong/pages/sqlite-interfaces-python-and-matlab