-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to open database file #50
Comments
|
|
Looks like the DB file does not exist anymore. I will try to get in touch with Remotr to find out the status. |
I am using jupyter notebooks on a MAC and I am unable to open the sakila database. Here is the error message that I got.
OperationalError Traceback (most recent call last)
Input In [6], in <cell line: 1>()
----> 1 conn = sqlite3.connect('data/sakila.db')
3 df = pd.read_sql('''
4 SELECT
5 rental.rental_id, rental.rental_date, rental.return_date,
(...)
19 ;
20 ''', conn, index_col='rental_id', parse_dates=['rental_date', 'return_date'])
OperationalError: unable to open database file
The text was updated successfully, but these errors were encountered: