使用相对路径时:出现错误 Sqlite3,OperationalError:无法打开数据库文件,
但是使用绝对路径效果很好,下面是示例
#database_filepath = 'Data/DatabaseFile.db'
def load_data(database_filepath):
con = sqlite3.connect(database_filepath) #not working
#con = sqlite3.connect(os.path.abspath(database_filepath)) #working fine
df = pd.read_sql_query('select * from someTable', con)
有什么更好的方法吗?