0
votes
0answers
31 views

I keep getting “InterfaceError: Error binding parameter 0 - probably unsupported type.”

I am trying to work my way through the official Django tutorial (https://docs.djangoproject.com/en/1.5/intro/tutorial01/) but I'm running into a problem when trying to use the shell. Specifically, ...
0
votes
0answers
55 views

OverflowError: Python int too large to convert to SQLite INTEGER

I get this error when I run django==1.4.2 tests with factory_boy==1.2 in Ubuntu 13.04. These tests run in Ubuntu 12.10. So the changes between them are python==2.7.3 and python==2.7.4. Does it change ...
0
votes
2answers
64 views

Move database from Django Project (sqlite) to Visual Studio 2010

I started a project using django & python, but have since decided that it will be done in Visual Studio 2010 using c#. Im a newbie when it comes to all of these by the way. I followed a load of ...
0
votes
0answers
38 views

Python/Django SQLite3: save() not working with multiple forms simultaneously

Below is code I'm using as a response form to receive inputs from a webpage using Python/Django web framework and an sqlite3 database. The code successfully saves each input into the ReviewerResponse ...
0
votes
2answers
34 views

Django ManyToManyField not present in Sqlite3

I'm new to Django and I have some issues with a ManyToMany relationship. I work on a blastn automatisation and here are my classes: class Annotation(models.Model): sequence = ...
0
votes
0answers
54 views

Django Database Single Cell Overwrite

I am attempting to save a response from a text input to a single cell in a sqlite3 database table without writing over the rest of the information stored in that line of the table. I need to do this ...
1
vote
1answer
48 views

Can I generate schema migrations from South that work on different databases [sqlite and postgresql]?

I use sqlite3 on my dev server and when I change the schema, I'd like to be able to generate migrations on development that I can use on production, which uses postgresql. One option would be to ...
0
votes
3answers
73 views

How to use Django in order to present an old database without ruining it when using syncdb?

I have a database in sqlite and I want to use Django to present it and make queries on it. I know how to create a new database by creating new classes in models.py, but what is the best way to use ...
0
votes
1answer
52 views

Integrity error django

I was using sqlite3 for my database in django project and then I decided to change it to mysql engine. I changed everything in the settings.py correctly, and in order not to lose the db I dumped my ...
0
votes
1answer
31 views

Django does assign but not store primary key value

I have a simple django model class Directory(models.Model): id = models.AutoField(primary_key=True) path = models.TextField(unique=True) def __unicode__(self): return self.path class ...
0
votes
1answer
112 views

TypeError when I try to create the db with sqlite3 in Django 1.4

I am going through this nettuts tutorial Building Ribbit in Django. When I try to create the database I get this TypeError: (ribbit_env)MacBook-Pro-de-Pablo-Oubina-Lopez:ribbit oubiga$ python ...
0
votes
1answer
35 views

Django Model/SQL Relationship Error

I'm working on a simple forum using Python & Django but i'm running into a small issue when creating database entries for Post: (python manage.py shell): >>> from forums.models ...
0
votes
1answer
58 views

Django home page inactive when admin active

First of all, i'm a newbie. I'm running Django 1.4.3 on Mac OSX Mountain Lion. I'm going through the tutorials on the Django site and i'm noticing that my homepage doesn't work when my admin is ...
0
votes
1answer
110 views

How to install sqlite3 database tables to run with a Django project?

I'm reading a tutorial on how to build a web application with Django. So far, I have installed Django and it seems to work find. The tutorial asked to create project folders by typing (in Windows ...
1
vote
2answers
46 views

SQLite3 not catching username that's too long

I recently modified my Django project's settings to that it uses SQLite3 when I run tests instead of PostgreSQL so that my tests will run faster. However, once I did that, one of my negative unit ...
0
votes
2answers
183 views

Django Tutorial - Database setup - sqlite3 (Stuck..)

So, I'm here(Database setup) in the Django Tutorial 'Writing your first Django app, part 1'. Everything up to this point has gone fine, but now I'm stuck. I go into the outer mysite directory in DOS, ...
1
vote
1answer
132 views

SOLVED: Django--getting DatabaseError, no such table with sqlite3

INFO: Django1.4, Python2.7, Apache2.2, mod_wsgi, sqlite3, CentOS First time deploying a project. Getting DatabaseError when navigating to a view that modifies or creates Objects in the db. The error ...
1
vote
0answers
118 views

Strange behaviour when filtering datetime range with Django ORM

I am trying to query data from a sqlite database using Django. The model class SolarEntryHour(models.Model): time = models.DateTimeField() device = models.ForeignKey(Device) lW = ...
1
vote
3answers
519 views

Django 1.4 on GAE: sqlite “ImportError: cannot import name utils”

I'm trying to get sqlite3 support working on Django 1.4 on Google App Engine 1.7.4 on Python 2.7. I fiddled around with the "Google Cloud SQL" database backend, all worked well (syncdb, ...
0
votes
1answer
89 views

Twitter API - how to have a user log in via Twitter to submit text to a database

I'm building a simple web app for New Year's Eve. I'm using Django and have an SQLite3 database set up. The idea behind the web app is that someone submits a piece of text (finishing off a sentence ...
0
votes
1answer
764 views

ImportError: No module named _sqlite3 with Python 2.7

Ive compiled python 2.7 and django 1.3. When working with django I find that it reports.. ImportError: No module named _sqlite3 Ive ensure that all the correct sqlite packages are installed and ...
0
votes
1answer
80 views

syncing sqlite3 for Django tutorial

I'm starting the Django tutorials and have virtual environments and django installed. I'm working on a Mac 10.6.8, which has sqlite3 already installed. I'm working inside a virtual environment. I ...
0
votes
0answers
134 views

Django: can a 'database is locked' error be caused by wrong IntegrityError handling?

I end up with a locked sqlite3 database always after a page which catches an integrityerror (IntegrityError) exception. Could the lock be caused by a wrong exception handling? And if it could be, what ...
1
vote
1answer
101 views

Django wsgiref/handlers.py throws exception like always

I'm doing some django TDD samples following this article http://www.tdd-django-tutorial.com/tutorial/1/. But when I try to run my testing I always got this problem, Creating test database for alias ...
7
votes
2answers
283 views

How to implement the having clause in sqlite django ORM

Hi I ve written django sqlite orm syntax to retrieve particular set of records JobStatus.objects.filter(status='PRF').values_list('job', ...
0
votes
0answers
57 views

Django sqlite3 test in memory missing table [duplicate]

I'm using Django 1.3. When I set TEST_NAME on some file it works, but very slow. But when TEST_NAME is ':memory:' django complain about missing tables. What can be wrong? Thx for any help.
0
votes
1answer
245 views

python sqlite use in terminal -django

How can I see my databases in SQlite for Django. I am following the django tutorial on ubuntu. Now its working fine except. After running python manage.py sql polls then python manage.py ...
0
votes
1answer
93 views

Problems with ZipCode Database Project

I saw mentions on here of the ZipCode database project for computing distance between two zipcodes. I was able to upload the csv file successfully to my database using Django and sqlite3. However, now ...
0
votes
3answers
131 views

“Error: near ”Documents“: syntax Error” - sqlite3/Django

I am trying Chapter 6 from Django book. After changing some fields to blank=True, and null=True, we are told to update the table using dbshell. When I type: python manage.py dbshell, the following ...
0
votes
1answer
124 views

sqlite not saving decimals but works fine in MySQL [duplicate]

Possible Duplicate: How to convert Python decimal to SQLite numeric? I am having an issue with sqlite not showing values that are not 2 decimal places but when I test it on MySQL ...
0
votes
2answers
337 views

How to update data on field on a website from SQL database with AJAX and Django

I'm creating a little web application and I would like to update the newest data on a field from SQL database on server WITHOUT refreshing the whole page. Is this possible and if yes, how can I do ...
3
votes
2answers
128 views

How would I write a CSV file populated with my sqlite3 db?

I'm a little confused on how I would populate the following csv function with the information in my models.py for a given user. Can anyone point me in the right direction? Do I need to process the ...
0
votes
0answers
157 views

Django 1.4 syncdb error

I'm having troubles creating a db relative to settings path. In my settings.py I have: import os SETTINGS_PATH = os.path.abspath(os.path.dirname(__file__)) DB_PATH = os.path.abspath(SETTINGS_PATH + ...
0
votes
0answers
108 views

Pre-loading SQL in Django. Inserting '--' into SQLite3

Django 1.4.1 / SQLite 3.7.2 / Python 2.6.6 on Ubuntu 10.10/AMD64 Hi: I'm trying to load an existing (very large - 200 MB) *.sql file into a Django model when I run "python manage.py syncdb". The ...
1
vote
1answer
23 views

django database codec

I was trying to use some Chinese character in the sqlite database (with django), but can't be displayed in the admin page From the setting.py: LANGUAGE_CODE = 'en' gettext = lambda s: s LANGUAGES = ...
2
votes
1answer
694 views

heroku No module named _sqlite3

While trying to deploy a django app on heroku, I get the following error. I am able to test locally. It works fine. But "heroku run python manage.py syncdb" results in the following error. I have gone ...
0
votes
1answer
41 views

to store the data in the tables in django app without default ordering

my code: for name, count1 in list: s = Keywords(file_name=name,frequency_count=count1) s.save() this is a section of code in views.py file of my app created in django. In this section, it ...
1
vote
1answer
62 views

error in accessing table created in django in the python code

Now on writing path as sys.path.insert(0,'/home/pooja/Desktop/mysite'), it ran fine asked me for the word tobe searched and gave this error: Traceback (most recent call last): File ...
1
vote
1answer
428 views

Django (Python) : DatabaseError : x Table has No Column named y

hi i am working on a django python application using sqlite3 database. I have a an extention to django's user model defined in my models.py as follows: #Account Model class Account(models.Model): ...
1
vote
0answers
351 views

sqlite3 error when updating to django 1.4

I have created a new virtual environment so that I can update my code from django1.3 to django1.4. The django1.3 environment has no issues with the sqlite version and database I am using. The ...
1
vote
1answer
193 views

How does django/sqllite3 build database for testing?

Hi I'm attempting to write some unittests for my django web application but I'm running into some database problems when trying to run my tests. I'm using Factory Boy in some places in order to ...
1
vote
2answers
460 views

Unit testing django project with sqlite3 db missing tables

Missing Table When Running Django Unittest with Sqlite3 I have already looked at this post and am trying to set up my project for testing. Anytime I try to run any of the database commands I get an ...
2
votes
3answers
2k views

Django Newbie: python manage.py syncdb error?

Working on the Django tutorial at the moment and got this error when I tried: python manage.py syncdb Using sqlite3 Traceback (most recent call last): File "manage.py", line 10, in ...
0
votes
3answers
2k views

Django - No module named _sqlite3

I have django 1.4 installed on my rhel 5. By default rhel 5 has python 2.4 in it but to use django 1.4 I manually installed python 2.7.3 The development server is running fine but when I create a new ...
0
votes
1answer
124 views

Django syncdb command, can't find column in table it's creating

I've decided to restart my database over from scratch after it get very messy. so I dropped the database and am now trying to recreate it with syncdb. as you can see below it's creating the table ...
0
votes
1answer
462 views

Django profile id may not not null using get_or_create, how does it relate to the db?

I followed a bit the steps on Django User Profiles - Simple yet powerful. Not quite the same because I am in the middle of developing the idea. From this site I used in particular, also this line: ...
3
votes
1answer
868 views

Django 1.4 defining user

(pythonanywhere2)bash-3.2$ python manage.py syncdb Creating tables ... Creating table auth_permission Creating table auth_group_permissions Creating table auth_group Creating table ...
0
votes
1answer
169 views

Getting db_type() error while using django-facebook connect for DjangoApp

I'm using django-1.4 , sqlite3 , django-facebookconnect Following instructions in Wiki to setup . "python manage.py syncdb" throws an error . Creating tables ... Creating table auth_permission ...
0
votes
1answer
143 views

Django models.py importing with no fields

As I am working through https://docs.djangoproject.com/en/1.4/topics/db/models/ , in django, I have started a new app called myapp and edited the the models.py file as the walkthrough defines: class ...
0
votes
1answer
54 views

Removing an application kills my Django admin interface

I had a login app which I was using. It had a table in my sqlite3 database. I decided I didn't need it anymore and I removed 'login', from my INSTALLED_APPS and I deleted the app directory. However, ...

1 2 3