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 merg

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 un

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 t

django sqlite3 error

2018-08-22 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 ,NULL