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 r

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

Re: sqlite3.NotSupportedError: URIs not supported

2018-02-26 Thread Dylan Reinhold
The original email was from 2 years ago, So I'm sure a lot has changed. Dylan On Mon, Feb 26, 2018 at 12:49 PM, Samantha Atkins wrote: > Well this is useless to those of us actually on python3. Exactly what > version of what fixeds this issue *for* python3? > > On Wednesday, August 24, 2016 at

Re: sqlite3.NotSupportedError: URIs not supported

2018-02-26 Thread Samantha Atkins
Well this is useless to those of us actually on python3. Exactly what version of what fixeds this issue *for* python3? On Wednesday, August 24, 2016 at 1:16:53 PM UTC-7, Jeff Silverman wrote: > > Can anyone point me in the right direction to solve this? I am running > DJANGO with python3.4 in

Re: sqlite3 table not found

2017-05-22 Thread jjanderson52000
James, I will read up on dbshell and give it a try. Thanks for the pointer. Yes, I ran both 'makemigrations' and 'migrate' prior to posting. If I can figure out how to close out the thread, I will. Jim A. On Sunday, May 21, 2017 at 12:03:42 PM UTC-4, James Schneider wrote: > > > > On May 21,

Re: sqlite3 table not found

2017-05-21 Thread James Schneider
On May 21, 2017 8:49 AM, wrote: Hi, I'm fairly new to Django and I'm very much still in the learning process. I'm using Django 1.10.3 on a project and have just added some new models. When I run the server and enter a URL to visit one of my views, I get an error, an excerpt of which is shown

Re: sqlite3 database encrytion for Django.

2017-05-09 Thread Melvyn Sopacua
On Tuesday 09 May 2017 09:24:08 Antonis Christofides wrote: > > and root seems (unsurprisingly) able to do anything desired with the > > database. > > He meant that root wouldn't be able to read the database if the > database was encrypted. But, again, the question is whether root > would have acc

Re: sqlite3 database encrytion for Django.

2017-05-08 Thread Antonis Christofides
> and root seems (unsurprisingly) able to do anything desired with the > database. He meant that root wouldn't be able to read the database if the database was encrypted. But, again, the question is whether root would have access to the encryption keys. If the django user has access to the encrypti

Re: sqlite3 database encrytion for Django.

2017-05-08 Thread Tim Chase
On 2017-05-08 18:26, Melvyn Sopacua wrote: > > What would you gain by encrypting it? > > Three things: > 1) If the file gets deleted, Django does not recreate it with that > mode. Solvable by using a dedicated directory instead of the above. I'm not sure I see this as a benefit, but if rogue proc

Re: sqlite3 database encrytion for Django.

2017-05-08 Thread Melvyn Sopacua
On Monday 08 May 2017 18:29:35 Antonis Christofides wrote: > Assume Django is running as user 'django' and the db is "db.sqlite3". > > If you "chown django db.sqlite3" and "chmod 600 db.sqlite3", only user > django can access it. > > What would you gain by encrypting it? Three things: 1) If the

Re: sqlite3 database encrytion for Django.

2017-05-08 Thread Antonis Christofides
Assume Django is running as user 'django' and the db is "db.sqlite3". If you "chown django db.sqlite3" and "chmod 600 db.sqlite3", only user django can access it. What would you gain by encrypting it? Antonis Christofides http://djangodeployment.com On 2017-05-08 18:06, Melvyn Sopacua wrote: >

Re: sqlite3 database encrytion for Django.

2017-05-08 Thread Melvyn Sopacua
On Monday 08 May 2017 17:35:59 Antonis Christofides wrote: > > Unfortunately, that doesn't prevent theft at runtime, which is the > > primary case for encrypting "documents". I used to do something > > like this with svn passwords, using a file-backed mdconfig store > > and geli. > > But during ru

Re: sqlite3 database encrytion for Django.

2017-05-08 Thread Antonis Christofides
> Unfortunately, that doesn't prevent theft at runtime, which is the primary > case for encrypting "documents". I used to do something like this with svn > passwords, using a file-backed mdconfig store and geli. > But during runtime, Django has access to the unencrypted database (otherwise it would

Re: sqlite3 database encrytion for Django.

2017-05-08 Thread Melvyn Sopacua
On Saturday 06 May 2017 11:56:28 Tim Chase wrote: > On 2017-05-05 11:51, agajesh...@atompower.com wrote: > > I want to encrypt my sqlite3 database such that it cannot be > > accessed without a key. I came across "sqlcipher" tool which > > provides encryption for sqlite3 database, but I couldn't fin

Re: sqlite3 database encrytion for Django.

2017-05-06 Thread Tim Chase
On 2017-05-05 11:51, agajesh...@atompower.com wrote: > I want to encrypt my sqlite3 database such that it cannot be > accessed without a key. I came across "sqlcipher" tool which > provides encryption for sqlite3 database, but I couldn't find > enough support to make it work from django. > > It w

Re: sqlite3 database encrytion for Django.

2017-05-05 Thread Antonis Christofides
Hi, That's interesting. May I ask why you want to do this? Regards, A. Antonis Christofides http://djangodeployment.com On 2017-05-05 21:51, agajesh...@atompower.com wrote: > Hello everyone, > > I want to encrypt my sqlite3 database such that it cannot be accessed without > a key. I came acros

Re: sqlite3 database encrytion for Django.

2017-05-05 Thread Malcolm MacKinnon
I suggest you consider using keyzar and django-encrypted-fields. Here's the code: https://github.com/defrex/django-encrypted-fields/ On Fri, May 5, 2017 at 11:51 AM, wrote: > Hello everyone, > > I want to encrypt my sqlite3 database such that it cannot be accessed > without a key. I came across

Re: sqlite3.NotSupportedError: URIs not supported

2016-08-24 Thread Jeff Silverman
Well I may have answered my own question. Seems it may be a version incompatibility. I built another virtual environment at Python 2.7 and the error is gone. Also I am using the pycontrol module which is also not work g with Python 3.4. On Wednesday, August 24, 2016, Jeff Silverman wrote: > Ca

Re: Sqlite3 to Postgres Migration?

2015-02-20 Thread Mike Dewhirst
On 21/02/2015 9:55 AM, talex wrote: Thanks for your helpful comments. Andrew, thanks for your migration article at http://afrg.co/updj17/a2 . It is slightly daunting for me at this point, but I may need to come back to it later. Your book looks interesting. Mike, thanks for the dump/load load

Re: Sqlite3 to Postgres Migration?

2015-02-20 Thread Andrew Farrell
One approach may be to use django-import-export to add to the admin interface the capability to export your data to CSV (or JSON or Excel) and likewise to import it. Then, simply run two instances of your app: one on top of postgres, one on

Re: Sqlite3 to Postgres Migration?

2015-02-20 Thread talex
Thanks for your helpful comments. Andrew, thanks for your migration article at http://afrg.co/updj17/a2 . It is slightly daunting for me at this point, but I may need to come back to it later. Your book looks interesting. Mike, thanks for the dump/load load suggestion. For the moment, I think

Re: Sqlite3 to Postgres Migration?

2015-02-19 Thread Mike Dewhirst
On 20/02/2015 3:07 AM, Tom Lockhart wrote: On Feb 18, 2015, at 11:04 PM, talex wrote: I have a functioning Django application that is based on sqlite3, but I want to change to using Postgres. I’ll point out for the benefit of others who might be getting started: Postgres is a full feature

Re: Sqlite3 to Postgres Migration?

2015-02-19 Thread Tom Lockhart
On Feb 18, 2015, at 11:04 PM, talex wrote: > I have a functioning Django application that is based on sqlite3, > but I want to change to using Postgres. I’ll point out for the benefit of others who might be getting started: Postgres is a full featured database and supports the full range of Dj

Re: Sqlite3 to Postgres Migration?

2015-02-19 Thread Andrew Pinkham
On Feb 19, 2015, at 1:04 AM, talex wrote: > Am I correct that use of "python makemigrations" followed by > "python migrate", should copy the existing data into Postgres > and leave me with a working application? I'm afraid not. Migration allows for predictable and reversible alterations to the d

Re: SQLite3 refuses to work when running syncdb

2013-07-16 Thread Rafael E. Ferrero
hahaha... its ok... you will find that its really cool coding webs with Django... See ya! 2013/7/16 Alex Hall > Well, disregard my email. I was selecting the dictionary to copy into my > reply when I noticed I'd transposed two letters in the path, meaning that > Django was trying to access a pa

Re: SQLite3 refuses to work when running syncdb

2013-07-16 Thread Alex Hall
Well, disregard my email. I was selecting the dictionary to copy into my reply when I noticed I'd transposed two letters in the path, meaning that Django was trying to access a path that does not exist. That will certainly throw errors! :) Thanks anyway, and I'm sure I'll have more questions as

Re: SQLite3 refuses to work when running syncdb

2013-07-16 Thread Rafael E. Ferrero
maybe pastebin your code helps... you have permission on folders where sqlite file will be created? I have this in settings.py (django 1.3.1): ... 'default': { # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 'ENGINE': 'django.db.backends.sqlite3', #

Re: SQLite3 database error!!!

2013-04-21 Thread Brad Pitcher
Can you post the rest of the traceback? On Apr 21, 2013 7:06 AM, "Kakar" wrote: > I am in settings.py and using SQLite3. But when i execute manage.py > syncdb, it gives me error: "Value error: Empty module name" I didn't > understood this part. Plz help me guyz. > > -- > You received this message

Re: sqlite3 database error

2012-02-13 Thread Tom Evans
On Mon, Feb 13, 2012 at 4:01 PM, Dennis Lee Bieber wrote: > On Mon, 13 Feb 2012 01:50:12 -0800 (PST), Marcus Maximus > wrote: > > >>        'NAME': 'C:\Users\Maximus\Desktop\Webseite\Django\sqlite-shell- >>win32-x86-3071000\test.db',                      # Or path to database > >        Is that a

Re: sqlite3 database error

2012-02-13 Thread ajohnston
Also 'Webseite' in your file path may be misspelled? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@goog

Re: sqlite3 database error

2012-02-13 Thread Stanwin Siow
Try this: >> DATABASES = { >> 'default': { >> 'ENGINE': 'django.db.backends.sqlite3', # Add >> 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. >> 'NAME': 'test.db', # Or path to database >> file if using sqlite3. >> 'USER': '',

Re: sqlite3 database error

2012-02-13 Thread ajohnston
Sorry. To be clearer, I should have said. In your db file name: C:\Users\Maximus\Desktop\Webseite\Django\sqlite-shell-win32- x86-3071000\test.db try changing the \ to / See: https://docs.djangoproject.com/en/dev/ref/settings/#name -- You received this message because you are subscribed to the

Re: sqlite3 database error

2012-02-13 Thread ajohnston
Try changing the slashes form \ to / On Feb 13, 4:50 am, Marcus Maximus wrote: > Hey guys, > > i am using sqlite3 for my django app. BUT I have problems installing > it. Here are my configs: > > DATABASES = { >     'default': { >         'ENGINE': 'django.db.backends.sqlite3',  # Add > 'postgresq

Re: sqlite3 database error

2012-02-13 Thread Babatunde Akinyanmi
After specifying the path to where you want your sqlite database to be i.e db name setting, after your syncdb, the database will be created automatically if it doesn't already exist in the path you stated. On 2/13/12, Marcus Maximus wrote: > Hey guys, > > i am using sqlite3 for my django app. BUT

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 = { >'default': { >'EN

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 olde

Re: sqlite3 and south data migration

2011-04-27 Thread Shawn Milochik
On 04/27/2011 05:22 AM, Amit Sethi wrote: Hi all does sqlite3 not support data migration. I am trying to implement migration on my test fixtures using south however i get this particular error : AttributeError: 'DatabaseFeatures' object has no attribute 'supports_tablespaces' Not all feature

Re: sqlite3 backend error

2010-05-17 Thread Tomi Pieviläinen
This is due to having a virtualenv created in a previous version of Ubuntu. Recreate the virtualenv under Lucid, and you should be fine. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegrou

Re: Sqlite3, saving many items simultaneosly

2010-03-07 Thread gintare
Thanks for both of you! On Mar 5, 6:37 pm, Atamert Ölçgen wrote: > On Friday 05 March 2010 18:09:22gintarewrote:> b = Blog(  [name, tagline] , > ['Beatles Blog', 'All the latest Beatles > > news]  ) > > > >>> b.save() > > How many items are you saving at once? Have you measured the time required

Re: Sqlite3, saving many items simultaneosly

2010-03-05 Thread Atamert Ölçgen
On Friday 05 March 2010 18:09:22 gintare wrote: > b = Blog( [name, tagline] , ['Beatles Blog', 'All the latest Beatles > news] ) > > >>> b.save() How many items are you saving at once? Have you measured the time required to execute these queries and the total time your view/management command t

Re: Sqlite3, saving many items simultaneosly

2010-03-05 Thread Shawn Milochik
Yes. Look at the syntax for executemany() (as opposed to execute()). Shawn -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django

Re: sqlite3 gives "OperationalError: no such table: django_redirect"

2010-02-08 Thread Phlip
> It appears you have not run manage.py syncdb after adding > 'django.contrib.redirects' to INSTALLED_APPS. > > Karen Ah, I don't know if I have that in there yet (yes, it's hard to check), but I DO have this... 'django.contrib.redirects.middleware.RedirectFallbackMiddleware' ...in test_setti

Re: sqlite3 gives "OperationalError: no such table: django_redirect"

2010-02-08 Thread Karen Tracey
On Mon, Feb 8, 2010 at 6:56 PM, Phlip wrote: > > It appears you have not run manage.py syncdb after adding > > 'django.contrib.redirects' to INSTALLED_APPS. > > Even when testing into sqlite3 :memory:? I thought that obviated all > syncdb considerations... > > No, for tests if the app is listed i

Re: sqlite3 gives "OperationalError: no such table: django_redirect"

2010-02-08 Thread Phlip
> It appears you have not run manage.py syncdb after adding > 'django.contrib.redirects' to INSTALLED_APPS. Even when testing into sqlite3 :memory:? I thought that obviated all syncdb considerations... -- You received this message because you are subscribed to the Google Groups "Django users" g

Re: sqlite3 gives "OperationalError: no such table: django_redirect"

2010-02-08 Thread Karen Tracey
On Mon, Feb 8, 2010 at 4:51 PM, Phlip wrote: > Djangoids: > > I get this error message whenever I really need client.get() to run, > in a test. Different apps and configurations show the problem in > various situations. > > The only Google hit for the error message with sqlite3 is some lone > web

Re: Sqlite3

2009-09-23 Thread Brian McKeever
What does your DATABASE_NAME setting set to in your settings.py file? I know django gives that error if the path is set incorrectly. It needs to say something like: '/home/user_name/django_project/ your_database.db' if you're using sqlite On Sep 23, 4:47 pm, RcCypher wrote: > First I'd like to s

Re: sqlite3+fastcgi setup problem [mac 10.6]

2009-09-20 Thread kelley....@gmail.com
This question is superceded by one I just posted. Rather than waste bandwidth, I'll post an overall solution when I figure one out. -- dk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: Sqlite3 ok from deployment?

2009-07-22 Thread Some Guy
Thanks, it's an in-house thing so I don't anticipate growth. I guess i'll stick with sqlite for now. Your reassurance is appreciated! On Jul 22, 5:24 pm, Vasil Vangelovski wrote: > I don't think it really matters if one or more processes/threads try > to access it, when it get's locked EXCLUSIVE

Re: Sqlite3 ok from deployment?

2009-07-22 Thread Vasil Vangelovski
I don't think it really matters if one or more processes/threads try to access it, when it get's locked EXCLUSIVE for writing only one will have access to it until the lock gets released. For a very low volume site with very few INSERT/UPDATE/DELETE queries you may not experience any difference bu

Re: Sqlite3 database fail

2009-04-04 Thread zayatzz
Thanks to both of you. worked just fine. Alan On Apr 4, 10:50 pm, dls wrote: > Yes, once you have executed the initial "python manage.py syncdb" your > database will automatically be created by Django and you will be able > to open in using SQLite. If you are starting a brand new project you >

Re: Sqlite3 database fail

2009-04-04 Thread dls
Yes, once you have executed the initial "python manage.py syncdb" your database will automatically be created by Django and you will be able to open in using SQLite. If you are starting a brand new project you should try "python manage.py startapp [appname]", which will create a new application in

Re: Sqlite3 database fail

2009-04-04 Thread zayatzz
So i should just set the database file name in settings.py and stop worring about it untill i hit syncdb?' Alan. On Apr 4, 10:38 pm, Alex Gaynor wrote: > On Sat, Apr 4, 2009 at 3:34 PM, alan.kesselm...@gmail.com < > > > > alan.kesselm...@gmail.com> wrote: > > > Hello > > > I decided to check ou

Re: Sqlite3 database fail

2009-04-04 Thread Alex Gaynor
On Sat, Apr 4, 2009 at 3:34 PM, alan.kesselm...@gmail.com < alan.kesselm...@gmail.com> wrote: > > Hello > > I decided to check out django and i finished tutorial and it was all > good. When i wanted to try something for myself and created another > app and proceeded to create new database for this

Re: sqlite3 problems setting up

2009-01-25 Thread Steve Holden
DragonSlayre wrote: > > > On Jan 25, 6:04 pm, Steve Holden wrote: >> When you install something by running >> >> python setup.py install >> >> it gets installed into the python that is used to run setup.py. It looks >> like you had /usr/local/bin on your path when you installed django, but >>

Re: sqlite3 problems setting up

2009-01-24 Thread DragonSlayre
On Jan 25, 6:04 pm, Steve Holden wrote: > > When you install something by running > >   python setup.py install > > it gets installed into the python that is used to run setup.py. It looks > like you had /usr/local/bin on your path when you installed django, but > not when you installed PIL and

Re: sqlite3 problems setting up

2009-01-24 Thread Steve Holden
DragonSlayre wrote: > Just doing some exploring - noticing that: > > * /usr/lib/python2.5/site-packages has a pysqlite2 folder as well as a > PIL folder > * /usr/local/lib/python2.6/site-packages has just django in it > > I'm not sure how the whole site-packages things work, or why python > 2.5

Re: sqlite3 problems setting up

2009-01-24 Thread DragonSlayre
Just doing some exploring - noticing that: * /usr/lib/python2.5/site-packages has a pysqlite2 folder as well as a PIL folder * /usr/local/lib/python2.6/site-packages has just django in it I'm not sure how the whole site-packages things work, or why python 2.5 is in /usr/lib/ and python 2.6 is in

Re: sqlite3 problems setting up

2009-01-24 Thread DragonSlayre
Importing sqlite3 fails as well (if I type this into a python shell) import sqlite3 Traceback (most recent call last): File "", line 1, in File "/usr/local/lib/python2.6/sqlite3/__init__.py", line 24, in from dbapi2 import * File "/usr/local/lib/python2.6/sqlite3/dbapi2.py", line

Re: sqlite3 problems setting up

2009-01-24 Thread DragonSlayre
This is my path currently: ['', '/usr/local/lib/python26.zip', '/usr/local/lib/python2.6', '/usr/ local/lib/python2.6/plat-linux2', '/usr/local/lib/python2.6/lib-tk', '/ usr/local/lib/python2.6/lib-old', '/usr/local/lib/python2.6/lib- dynload', '/usr/local/lib/python2.6/site-packages'] On Jan 2

Re: sqlite3: odd slice behavior

2007-06-12 Thread Malcolm Tredinnick
On Tue, 2007-06-12 at 17:21 -0400, Forest Bond wrote: [...] > My original question, to some extent, has become irrelevent, since QuerySets > that are the progeny of slice operations are explicitly forbidden further > QuerySet-like processing (filter, order_by). That was my original desire. > > H

Re: sqlite3: odd slice behavior

2007-06-12 Thread Forest Bond
On Mon, Jun 11, 2007 at 09:43:55PM -0400, Forest Bond wrote: > On Mon, Jun 11, 2007 at 06:18:18PM +1000, Malcolm Tredinnick wrote: > > On Sun, 2007-06-10 at 15:45 -0400, Forest Bond wrote: > > > Using the sqlite3 backend, any slice operation on a QuerySet for which > > > the slice > > > does not s

Re: sqlite3: odd slice behavior

2007-06-11 Thread Forest Bond
On Mon, Jun 11, 2007 at 06:18:18PM +1000, Malcolm Tredinnick wrote: > On Sun, 2007-06-10 at 15:45 -0400, Forest Bond wrote: > > Using the sqlite3 backend, any slice operation on a QuerySet for which the > > slice > > does not start at 0, a list is returned instead of a QuerySet, and the > > slice

Re: sqlite3: odd slice behavior

2007-06-11 Thread Malcolm Tredinnick
On Sun, 2007-06-10 at 15:45 -0400, Forest Bond wrote: > Hi, > > Using the sqlite3 backend, any slice operation on a QuerySet for which the > slice > does not start at 0, a list is returned instead of a QuerySet, and the slice > is > not performed in the database, but in Python. > > Is this exp

Re: Sqlite3 and Python 2.5

2006-12-14 Thread Jeremy Dunck
On 12/14/06, kbochert <[EMAIL PROTECTED]> wrote: > > So 'DATABASE_NAME' should be the full name of a non-existant file. I > had thought they wanted the path to where the file was located. > > !!Works fine now!! > > Two problems for Django with Python 2.5 FYI, the 0.95 tarball on the site is prett

Re: Sqlite3 and Python 2.5

2006-12-14 Thread kbochert
So 'DATABASE_NAME' should be the full name of a non-existant file. I had thought they wanted the path to where the file was located. !!Works fine now!! Two problems for Django with Python 2.5 bug 1) ez_setup.py in Django .95 folder should have: DEFAULT_VERSION = "0.6c3" instead of DEFAULT_VERS

Re: Sqlite3 and Python 2.5

2006-12-14 Thread Joseph Heck
The the name to a file in a directory - SQLite databases are a single file, and it won't be able to create one if a directory already exists with the same name. -joe On 12/14/06, kbochert <[EMAIL PROTECTED]> wrote: > > > I tried to do: > Python manage.py syncdb > and got the error "No module name

Re: sqlite3 "database locked"

2006-11-10 Thread Rachel Willmer
Following up on my own question, it looks to me like implementing a new default Manager class is the way to go. Anyone got a better solution? Rachel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" gr

Re: sqlite3+mod_python problems?

2006-08-23 Thread Wiktor Grębla
James Bennett napisa³(a): > My initial guess is that the problem has to do with permissions on the > filesystem; the built-in server and FastCGI both typically run as your > user on the system, which means they have permission to access > anything your user account can access. > > Apache, however

Re: Re: sqlite3+mod_python problems?

2006-08-23 Thread James Bennett
On 8/23/06, Michael <[EMAIL PROTECTED]> wrote: > I've hit the same problem :( > after searching on this group and net I found that > curently django dosen't work well with sqlite. I'm not sure if that's the case here; it seems that it worked fine under the built-in server, and worked fine under F

Re: sqlite3+mod_python problems?

2006-08-23 Thread Wiktor Grębla
Michael napisa³(a): > I've hit the same problem :( > after searching on this group and net I found that > curently django dosen't work well with sqlite. I can't believe it's that bad ;(, if so, I'll have to switch to mysql or postgress. I hope it's gonna be clarified/fixed soon. W. -- Talker

Re: sqlite3+mod_python problems?

2006-08-23 Thread Michael
I've hit the same problem :(after searching on this group and net I found thatcurently django dosen't work well with sqlite.Try to use mysql or psqlOn 8/24/06, Wiktor Grębla <[EMAIL PROTECTED]> wrote: Hi.Today I've been trying (preparing) to switch from my testingconfiguration (lighttpd+flup+djang