Re: Sqlite3 error

2020-04-29 Thread Kasper Laudrup
Hi Chucks, On 28/04/2020 19.17, chucks ogwo wrote: I also tried to use pip to install sqlite3, it does not work too, I get a different error. (venv) C:\Users\Dell\PycharmProjects\interact_with_database>pip install sqlite3 Collecting sqlite3   Could not find a version that satisfies the

Re: Sqlite3 error

2020-04-28 Thread LGBS fine soul coders
Well try to download sqlite from google then install to your mashine manually dont use pip On Tue, 28 Apr 2020, 20:17 chucks ogwo, wrote: > Hi, Everyone, I have been trying to interact with the sqlite3 database on > Pycharm, every time I run the code it gives me an import error. > > > Traceback

Sqlite3 error

2020-04-28 Thread chucks ogwo
Hi, Everyone, I have been trying to interact with the sqlite3 database on Pycharm, every time I run the code it gives me an import error. Traceback (most recent call last): File ".\file.py", line 1, in import sqlite3 File "C:\Users\Dell\anaconda3\lib\sqlite3\__init__.py", line 23, in

Re: django sqlite3 error

2018-08-23 Thread Benjamin Goldberg
I think people need to see what your music_result table looks like before replying On Thursday, August 23, 2018 at 2:35:04 AM UTC-4, ruban bharath wrote: > > Hi these are my tables > > music_name = char(username),userId(int) > > meaning = char(meaning),userid(int) > > i have used the join to

Re: django sqlite3 error

2018-08-23 Thread Jason
What C. Kirby said. I don't see any use of django in this question, and if you are interested in using it, I would look at the tutorial in the documentation for an introduction to the ORM. -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: django sqlite3 error

2018-08-23 Thread C. Kirby
You are not using django anywhere in this question. I would send this to a python or sqlite group On Thursday, August 23, 2018 at 2:35:04 AM UTC-4, ruban bharath wrote: > > Hi these are my tables > > music_name = char(username),userId(int) > > meaning = char(meaning),userid(int) > > i have used

django sqlite3 error

2018-08-23 Thread ruban bharath
Hi these are my tables music_name = char(username),userId(int) meaning = char(meaning),userid(int) i have used the join to merge this db = sqlite3.connect('db.sqlite3') cursor = db.cursor() cursor.execute('\n' 'INSERT INTO music_result SELECT username, meaning

Re: sqlite3 error

2012-02-12 Thread Nevio Vesic
Try: django.db.backends.sqlite3 instead of just sqlite3 On Sun, Feb 12, 2012 at 3:31 PM, Marcus Maximus wrote: > Hey guys, > > i am trying to configure sqlite3(cause it seems to be easier than > postgresql) for django: > > my setting.py file is: > > DATABASES = { >

Re: sqlite3 error

2012-02-12 Thread Reinout van Rees
On 12-02-12 15:31, Marcus Maximus wrote: I tried to change the setting.py on line 'ENGINE': 'sqlite3', but this seems ok in my eyes... so whats wrong? Try the full dotted path, so including django.db.backends: 'ENGINE': 'django.db.backends.sqlite3', Just "sqlite3" by itself was fine in

sqlite3 error

2012-02-12 Thread Marcus Maximus
Hey guys, i am trying to configure sqlite3(cause it seems to be easier than postgresql) for django: my setting.py file is: DATABASES = { 'default': { 'ENGINE': 'sqlite3', #'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.