Re: serving root from static

2008-06-09 Thread Andre Meyer
thanks a lot, Colin, i will contact the WebFaction guys for the apache setup. they are always very helpful ;-) HOWEVER: for testing purposes only, using only runserver and sqlite, how to preceed for making this work? *http://localhost:8000/ --> static/index.html (NOT a

Re: raise AlreadyRegistered

2008-06-09 Thread Russell Keith-Magee
On Tue, Jun 10, 2008 at 6:32 AM, Andre Meyer <[EMAIL PROTECTED]> wrote: > hi all > > i was trying to write a little script to populate my database with test data > after i have rebuilt it due to model changes. it seems to work (set the path > and imports appropriately), but i get this infamous >

Re: raise AlreadyRegistered

2008-06-09 Thread Andre Meyer
On Tue, Jun 10, 2008 at 12:32 AM, Andre Meyer <[EMAIL PROTECTED]> wrote: > hi all > > i was trying to write a little script to populate my database with test > data after i have rebuilt it due to model changes. it seems to work (set the > path and imports appropriately), but i get this infamous >

Re: why my django site doesn't create .pyc file?

2008-06-09 Thread Jeff Anderson
Scott Moonen wrote: >> I think this way, apache could be a little more faster. Am I right? >> >> > > I don't think it will be faster. Django normally runs as a long-standing > process (either inside Apache or as a standalone process, depending on the > deployment model you've chosen). So,

Re: why my django site doesn't create .pyc file?

2008-06-09 Thread pength
Tim and Scott, thank you very much! On Jun 9, 10:03 pm, Tim Chase <[EMAIL PROTECTED]> wrote: > >> I think this way, apache could be a little more faster. Am I > >> right? > > > I don't think it will be faster. Django normally runs as a > > long-standing process (either inside Apache or as a

Django and mysql SET datatype?

2008-06-09 Thread Silfheed
Heyas So we have a table which makes use of mysql's SET datatype to store the status of a page ('active','inappropriate','optout') with the status being any combination of the three. This helps us keep the complexity of our schemas down since we just need one column (rather than 3 tables) to

Choose the fields for inline editing

2008-06-09 Thread Cliff
Hi, I really like the inline editing option, but found that sometimes I don't want to list all the attributes of an object for inline editing. I guess there is a way to do this, but I cannot find it. Really appreciate if someone can help me out. Thanks Cliff

Re: serving root from static

2008-06-09 Thread Colin Bean
On Mon, Jun 9, 2008 at 3:25 PM, Andre Meyer <[EMAIL PROTECTED]> wrote: > thanks Jeff > > yes, i had found this method of having django serve static content, too, and > know it is not ideal. > > what i want is different: use apache for serving the static content at the > root of the site (defind

Re: Django graphic designers

2008-06-09 Thread John M
There are a TON of free resources for all of that, let me see if I can post a few for u . http://www.cssbeauty.com/ http://www.templatesbox.com/ http://vyk1.spaces.live.com/Blog/cns!EBE3A761F939F926!1051.entry http://www-128.ibm.com/developerworks/library/wa-freeweb/ Good Luck On Jun 9, 3:37

Re: "intro to django" script -

2008-06-09 Thread John M
Also, the week in django has some really good webcasts, maybe we could get them to post it to your website? http://blog.michaeltrier.com/2008/6/9/this-week-in-django-25-2008-06-08 On Jun 9, 8:04 am, Carl Karsten <[EMAIL PROTECTED]> wrote: > I want to make ahttp://showmedo.com"Getting started

Testing framework or model save behaves differently after qsrf merge?

2008-06-09 Thread peschler
I'm currently facing a weird problem with the testing framework after updating to the latest trunk version of the newforms-admin branch. I have written a small example and a unittest to explain the issue and to show that there seems to be some sort of problem after the qsrf merge. I'm not quite

Re: Bug in sqlite backend? Custom query gives OperationalError

2008-06-09 Thread Michael P. Soulier
Pong wrote: > Hi, > > what is wrong with this query? > > user_id_tuple = (2, 3, 25, 15) # for example > cursor = connection.cursor() > cursor.execute(SELECT > week, year, SUM(data), SUM(data1), SUM(data2), > SUM(data3), > SUM(data4) FROM

Django graphic designers

2008-06-09 Thread Juanjo Conti
I'd like to know if there is a community of graphic designers working with django. Maybe a website with resources (css, html tamplates...)? I am writing a little personal app and it looks really ugly :) One of my options is to hire a designer, but I would prefer to hire one with Django

raise AlreadyRegistered

2008-06-09 Thread Andre Meyer
hi all i was trying to write a little script to populate my database with test data after i have rebuilt it due to model changes. it seems to work (set the path and imports appropriately), but i get this infamous django.contrib.admin.sites.AlreadyRegistered error when running the script. is

Re: serving root from static

2008-06-09 Thread Andre Meyer
thanks Jeff yes, i had found this method of having django serve static content, too, and know it is not ideal. what i want is different: use apache for serving the static content at the root of the site (defind in settings.py and urls.py) and have a couple of django apps which are accessible

Re: "intro to django" script -

2008-06-09 Thread Jeff Johnson
Carl: There may be some useful stuff here. Webfaction is a web hosting site that specializes in hosting "long processes" like Django. http://www.webfaction.com/demos/django I plan on getting into Django, but I just recently got a whole bunch of new work and can't find the time right now.

Re: HELP: Foreign keys, models, and querysets

2008-06-09 Thread Huuuze
Its a typo. It should've been... >> pid = models.ForeignKey(Person) On Jun 9, 5:06 pm, Alex Koshelev <[EMAIL PROTECTED]> wrote: > What is this `pid = models.ForiegnKey()` ? > > On 9 июн, 23:44, Huuuze <[EMAIL PROTECTED]> wrote: > > > I have the following models in my models.py file: > > > >>

Bug in sqlite backend? Custom query gives OperationalError

2008-06-09 Thread Pong
Hi, what is wrong with this query? user_id_tuple = (2, 3, 25, 15) # for example cursor = connection.cursor() cursor.execute(SELECT week, year, SUM(data), SUM(data1), SUM(data2), SUM(data3), SUM(data4) FROM user_table

Re: HELP: Foreign keys, models, and querysets

2008-06-09 Thread Alex Koshelev
What is this `pid = models.ForiegnKey()` ? On 9 июн, 23:44, Huuuze <[EMAIL PROTECTED]> wrote: > I have the following models in my models.py file: > > >> class Person(models.Model): > >> pid = models.AutoField(primary_key=True) > >> fname = models.CharField(max_length=50) > >> lname =

Re: HELP: Foreign keys, models, and querysets

2008-06-09 Thread Richard Dahl
from: http://www.djangoproject.com/documentation/db-api/ Backward If a model has a ForeignKey, instances of the foreign-key model will have access to a Manager that returns all instances of the first model. By default, this Manager is named FOO_set, where FOO is the source model name,

HELP: Foreign keys, models, and querysets

2008-06-09 Thread Huuuze
I have the following models in my models.py file: >> class Person(models.Model): >> pid = models.AutoField(primary_key=True) >> fname = models.CharField(max_length=50) >> lname = models.CharField(max_length=50) >> class Books(models.Model) >> bid = models.AutoField(primary_key=True) >>

Re: Dynamic initialization of MultipleChoiceField

2008-06-09 Thread Adi
Yeah.. you are right.. you will have to initialize the superclass.. the complete code that i have used is something like this.. class TestForm(ModelForm): items = forms.MultipleChoiceField( choices = (), required = False ) On Jun 9, 1:35 pm, puff <[EMAIL PROTECTED]> wrote: > Isn't

Re: "more than 1 ForeignKey" error in newforms-admin

2008-06-09 Thread Andre Meyer
On Mon, Jun 9, 2008 at 9:21 PM, James Bennett <[EMAIL PROTECTED]> wrote: > > On Mon, Jun 9, 2008 at 2:08 PM, Andre Meyer <[EMAIL PROTECTED]> > wrote: > > i have a model with a class that has a foreign key and a subclass that > has > > another. this works well for creating the database, but the

Re: "more than 1 ForeignKey" error in newforms-admin

2008-06-09 Thread James Bennett
On Mon, Jun 9, 2008 at 2:08 PM, Andre Meyer <[EMAIL PROTECTED]> wrote: > i have a model with a class that has a foreign key and a subclass that has > another. this works well for creating the database, but the admin does not > like it. I believe your problem is that support for hierarchies of

trying to modify admin

2008-06-09 Thread Adam Fraser
Hello, I'm using Django to keep track hours spent working on "projects". The data model includes classes "Project" (name, description,...), "Timecard" (user, date) , and "TimecardHours" (timecard, project, hours). With these models plugged in, I get a nice admin page for changing/ reviewing

Re: Problem with login()

2008-06-09 Thread [EMAIL PROTECTED]
And caching On Jun 9, 2:02 pm, Alex Koshelev <[EMAIL PROTECTED]> wrote: > Check if your cookies are enabled. > > On 9 июн, 22:47, bcrem <[EMAIL PROTECTED]> wrote: > > > Sorry, get_user(request) was a blind alley; I'm actually using 'user = > > request.user' right now, and my first attempt was

"more than 1 ForeignKey" error in newforms-admin

2008-06-09 Thread Andre Meyer
hi all just a quick question to be sure: is it on purpose that newforms-admin does not allow more than one ForeignKey? or is it a not yet supported feature? i have a model with a class that has a foreign key and a subclass that has another. this works well for creating the database, but the

Re: Problem with login()

2008-06-09 Thread Alex Koshelev
Check if your cookies are enabled. On 9 июн, 22:47, bcrem <[EMAIL PROTECTED]> wrote: > Sorry, get_user(request) was a blind alley; I'm actually using 'user = > request.user' right now, and my first attempt was 'if > request.user.is_authenticated():' as you suggest. Behavior's the > same. > > On

Re: Problem with login()

2008-06-09 Thread bcrem
Sorry, get_user(request) was a blind alley; I'm actually using 'user = request.user' right now, and my first attempt was 'if request.user.is_authenticated():' as you suggest. Behavior's the same. On Jun 9, 2:29 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > what happens when you if you

Re: Dynamic initialization of MultipleChoiceField

2008-06-09 Thread puff
Isn't it necessary to initialize the super class with super(RecoverForm, self).__init__(*args, **kwargs) When I did so i got an illegal keyword argument! On Jun 9, 1:55 pm, Adi <[EMAIL PROTECTED]> wrote: > Another option would be to create a __init__ (self,choices=()) method > on form > Then

Re: Problem with login()

2008-06-09 Thread [EMAIL PROTECTED]
what happens when you if you try user = request.user or (better yet) if request.user.is_authenticated(): ... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send

Problem with login()

2008-06-09 Thread bcrem
Hello, I'm trying to set up a user login form; that's working fine, however when I navigate after login to my home page and try to do a simple "Hello, " I'm getting a False from user.is_authenticated(). Here're some relevant snippets: >From the login handler: uName =

Re: ModelChoiceField option values

2008-06-09 Thread Adi
The text displayed in the drop down comes from the __str__ method of the referenced model. So, just implement the __str__ method in the model that your ModelChoiceField references, and the display will show you that. On Jun 7, 10:55 am, Mihai Damian <[EMAIL PROTECTED]> wrote: > I'm using a

Re: Dynamic initialization of MultipleChoiceField

2008-06-09 Thread Adi
Another option would be to create a __init__ (self,choices=()) method on form Then in the method, assign self.fields['items'].choices = choices and when you instantiate a form, you can specify the choices choices = [('1', '1'), ('2', '2')] form=RecoverForm(choices) -Adi On Jun 9, 12:43 pm,

Dynamic initialization of MultipleChoiceField

2008-06-09 Thread puff
I needed to create a dynamically initialized MultipleChoiceField. Unfortunately, the Django docs when talking about initialize didn't go into how to deal with MultipleChoiceField. A bit of scratching around didn't show a real solution although Getting dynamic model choices in newforms

Re: Django and i18n

2008-06-09 Thread Taevin
Forgot about this for a while... Thanks for that, though. In reading through the code on that site, I came across the translation.activate function which is exactly what I needed. Now, instead of forcing a page refresh, I can just do: from django.utils.translation import activate and then just

Re: foreign key and verbose name?

2008-06-09 Thread Alex Koshelev
That fields accepts `model class` as first argument which is more important then `verbose_name` in this case. On Jun 9, 8:10 pm, pihentagy <[EMAIL PROTECTED]> wrote: > Hi all! > > In the docs > here:http://www.djangoproject.com/documentation/model-api/#verbose-field-n... > > Each field type,

Re: Painfully slow... why?

2008-06-09 Thread [EMAIL PROTECTED]
> What's up with that second line?  Are you doing anything fancy? > Second line is (as i recall) a large dataset where I get values only. That helped a lot, actually, to bring that particular page times down. It was in the 2 second range. The thing is, when I say painfully slow, I'm talking from

Re: Painfully slow... why?

2008-06-09 Thread David Zhou
On Jun 9, 2008, at 12:09 PM, [EMAIL PROTECTED] wrote: > I'm trying desparately to figure out why my django sites are so slow. > Using the statsmiddleware, I'm seeing numbers like this: > > Stats: Total: 0.08 Python: 0.07 DB: 0.01 Queries: 6 > Stats: Total: 0.48 Python: 0.37 DB: 0.11 Queries: 3 >

foreign key and verbose name?

2008-06-09 Thread pihentagy
Hi all! In the docs here: http://www.djangoproject.com/documentation/model-api/#verbose-field-names Each field type, except for ForeignKey, ManyToManyField and OneToOneField, takes an optional first positional argument — a verbose name. If the verbose name isn’t given, Django will automatically

Painfully slow... why?

2008-06-09 Thread [EMAIL PROTECTED]
I'm trying desparately to figure out why my django sites are so slow. Using the statsmiddleware, I'm seeing numbers like this: Stats: Total: 0.08 Python: 0.07 DB: 0.01 Queries: 6 Stats: Total: 0.48 Python: 0.37 DB: 0.11 Queries: 3 Stats: Total: 0.21 Python: 0.17 DB: 0.05 Queries: 32 Stats:

"intro to django" script -

2008-06-09 Thread Carl Karsten
I want to make a http://showmedo.com "Getting started with Django" I expect it to be about 5 min long. The goal is not show someone how to be productive, but how easy it is to get started. At most 1 min on install python, install django, make sure you can do python -c "import django" without

Re: oracle-django problem

2008-06-09 Thread shabda
Or use this, >From http://www.djangoproject.com/documentation/model-api/#table-names "To override the database table name, use the db_table parameter in class Meta." On Jun 9, 7:46 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Mon, Jun 9, 2008 at 6:43 AM, Harish <[EMAIL PROTECTED]> wrote: >

Re: oracle-django problem

2008-06-09 Thread Karen Tracey
On Mon, Jun 9, 2008 at 6:43 AM, Harish <[EMAIL PROTECTED]> wrote: > > hi friends > > i have a django application, which works on postgres as back-end. > now i want to migrate the application back-end from postgres to > oracle. > > The problem i am facing is that, the existing data table

Re: oracle-django problem

2008-06-09 Thread Juan Hernandez
why does it have to be that big?? what would be the problem of renaming the models?? On Tue, Jun 10, 2008 at 6:13 AM, Harish <[EMAIL PROTECTED]> wrote: > > hi friends > > i have a django application, which works on postgres as back-end. > now i want to migrate the application back-end

Re: Multi-table Models and Fixtures

2008-06-09 Thread Greg Taylor
That clears it up perfectly. This is great to have working, thanks again! Greg On Jun 9, 10:19 am, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Mon, Jun 9, 2008 at 10:09 PM, Greg Taylor <[EMAIL PROTECTED]> wrote: > > > Wonderful, I'll be able to test this pretty extensively tonight. >

Re: Multi-table Models and Fixtures

2008-06-09 Thread Russell Keith-Magee
On Mon, Jun 9, 2008 at 10:09 PM, Greg Taylor <[EMAIL PROTECTED]> wrote: > > Wonderful, I'll be able to test this pretty extensively tonight. > > Since I don't think it's documented either way, is there a particular > procedure I should abide by when dumping/reloading fixtures for the > parent and

Re: Multi-table Models and Fixtures

2008-06-09 Thread Greg Taylor
Wonderful, I'll be able to test this pretty extensively tonight. Since I don't think it's documented either way, is there a particular procedure I should abide by when dumping/reloading fixtures for the parent and child models? In my case, the parent is in one app, and the child is another. Do I

Re: Text Formatting

2008-06-09 Thread yanksluvr7
thanks I'll check that out On Jun 9, 9:53 am, "Scott Moonen" <[EMAIL PROTECTED]> wrote: > You'll need to use some sort of rich text editor. I've used > TinyMCEin the past; there are others as > well. > > -- Scott > > On Mon, Jun 9, 2008 at 9:51 AM, yanksluvr7

Re: Multi-table Models and Fixtures

2008-06-09 Thread Russell Keith-Magee
On Mon, Jun 9, 2008 at 8:12 PM, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > On Mon, Jun 9, 2008 at 8:06 PM, Greg Taylor <[EMAIL PROTECTED]> wrote: >> >> Much appreciated, Russ! I was not sure whether I was doing something >> wrong or not, this is good to know this is being looked at. I

Trouble trying to use formtools.preview.FormPreview

2008-06-09 Thread shabda
I am trying to use formtools.preview.FormPreview after reading http://www.djangoproject.com/documentation/form_preview/ and am getting weird errors. This is what I did, 1. Have a form called AddReviewForm which is working as expected. 2. Created a class class ReviewPreviewForm(FormPreview):

Re: why my django site doesn't create .pyc file?

2008-06-09 Thread Tim Chase
>> I think this way, apache could be a little more faster. Am I >> right? > > I don't think it will be faster. Django normally runs as a > long-standing process (either inside Apache or as a standalone > process, depending on the deployment model you've chosen). > So, unlike ordinary CGI

Re: Text Formatting

2008-06-09 Thread Scott Moonen
You'll need to use some sort of rich text editor. I've used TinyMCEin the past; there are others as well. -- Scott On Mon, Jun 9, 2008 at 9:51 AM, yanksluvr7 <[EMAIL PROTECTED]> wrote: > > Is there a way to make a django page so you can copy and paste text >

Text Formatting

2008-06-09 Thread yanksluvr7
Is there a way to make a django page so you can copy and paste text into the page and have it keep its original formatting? Everything I have found makes it copy as plain text, so any spacing, bullets, bold, italics, or anything else is lost. --~--~-~--~~~---~--~~

Re: why my django site doesn't create .pyc file?

2008-06-09 Thread Scott Moonen
> > I think this way, apache could be a little more faster. Am I right? > I don't think it will be faster. Django normally runs as a long-standing process (either inside Apache or as a standalone process, depending on the deployment model you've chosen). So, unlike ordinary CGI scripts, your

Re: Use django0.97 with cmemcached

2008-06-09 Thread Randy Barlow
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 mohamed nadir belkhelfa wrote: > I want to use cmemcached with Django 0.97 but the import of cmemcached in > source code cause the following error > > Can't extract file(s) to egg cache The following error occurred while trying > to extract file(s)

Re: why my django site doesn't create .pyc file?

2008-06-09 Thread pength
Thanks a lot ! I changed the user information in apache2's conf file, and now it's OK! I think this way, apache could be a little more faster. Am I right? On 6月9日, 下午7时39分, "Valts Mazurs" <[EMAIL PROTECTED]> wrote: > Hello, > > Check if web server process has enough privileges to write in the

hi friends,

2008-06-09 Thread amar
I am displaying a big report in a scrolling table with left most column and header fixed, and I used "overflow = visible" in the style sheet to print the page , vertically it's printing all the contents but the horizontal content is not printing due to the size of paper, can u help me please

Re: how to make two fields appear on a single line

2008-06-09 Thread amar
Thanks for spending your time it worked On May 21, 4:17 pm, Juanjo Conti <[EMAIL PROTECTED]> wrote: > amar escribió: > > > HI, > >  I am developing a simple project on django and now i want to make two > > text boxes appear on a single row, please help me > > What are your doing now? {{ form }}?

Re: Importing data from 'MS Access' .mdb files

2008-06-09 Thread M.Ganesh
chefsmart wrote: > You may follow these steps: > > 1. install the MySQL ODBC connector (currently version 5.1) > 2. create an empty database > 3. create a DSN pointing to your newly created empty database > 4. open your .mdb file in Access > 5. select your table in Access and go to

Re: Multi-table Models and Fixtures

2008-06-09 Thread Greg Taylor
Excellent news, I appreciate it very much! On Jun 9, 8:12 am, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Mon, Jun 9, 2008 at 8:06 PM, Greg Taylor <[EMAIL PROTECTED]> wrote: > > > Much appreciated, Russ! I was not sure whether I was doing something > > wrong or not, this is good to

problem with mod python: can not import base64mime

2008-06-09 Thread zekUs
Hi, I have djangp-svn installed (revision 7574) on an archlinux system. for testing i created an empty project with: "django-admin.py startproject deneme". when i run the test server i can see the default welcome page of django. then i installed mod_python (v 3.3.1) on apache (2.2.8.2). i

Re: Multi-table Models and Fixtures

2008-06-09 Thread Russell Keith-Magee
On Mon, Jun 9, 2008 at 8:06 PM, Greg Taylor <[EMAIL PROTECTED]> wrote: > > Much appreciated, Russ! I was not sure whether I was doing something > wrong or not, this is good to know this is being looked at. I tinkered > with a fix for a while but ultimately fell flat on my back for lack of >

Re: Multi-table Models and Fixtures

2008-06-09 Thread Greg Taylor
Much appreciated, Russ! I was not sure whether I was doing something wrong or not, this is good to know this is being looked at. I tinkered with a fix for a while but ultimately fell flat on my back for lack of experience with Django internals. Let me know if I can assist with testing or provide

Re: why my django site doesn't create .pyc file?

2008-06-09 Thread Valts Mazurs
Hello, Check if web server process has enough privileges to write in the directories containing .py files. Regards, Valts. On Mon, Jun 9, 2008 at 1:25 PM, pength <[EMAIL PROTECTED]> wrote: > > I have justed built my site on slicehost. Alhough my site is running > properly, I found if I update

RE: Problem with admin (urls)

2008-06-09 Thread Fred Reillier
Hello. I had the same problem a few days ago (i'm just discovering Django…) after installing v 0.96. It seems to be a problem with the installer (two folders not copied during the process : "admin/templates" and "admin/media"). To make things work, I had to copy manually the folders from the

Re: Problem with admin (urls)

2008-06-09 Thread ¤ۣۜ๘۩ AbdulHafeez
please use this link and check http://localhost:8000/admin regards AbdulHafeez On Mon, Jun 9, 2008 at 4:15 PM, Nader <[EMAIL PROTECTED]> wrote: > > Hello, > > I have a question. I have started a new project. > > This is my "urls.py" file : > > from django.conf.urls.defaults import * > >

Problem with admin (urls)

2008-06-09 Thread Nader
Hello, I have a question. I have started a new project. This is my "urls.py" file : from django.conf.urls.defaults import * urlpatterns = patterns('', # Example: # (r'^nadc/', include('nadc.foo.urls')), # Uncomment this for admin: (r'^admin/',

oracle-django problem

2008-06-09 Thread Harish
hi friends i have a django application, which works on postgres as back-end. now i want to migrate the application back-end from postgres to oracle. The problem i am facing is that, the existing data table names in postgres is too long (basically the table name is a combination of

why my django site doesn't create .pyc file?

2008-06-09 Thread pength
I have justed built my site on slicehost. Alhough my site is running properly, I found if I update any file (.py file, of course), it never recreate the .pyc file. Actually, if I delete any .pyc file, then it will never appear. I think there's something wrong with my site config, can anyone

Re: How to execute function dynamically?

2008-06-09 Thread David.D
I made a mistake! I use 'extra_context=locals()' in my generic view. Now no problem. Thanks very much. On Jun 9, 12:34 pm, "David.D" <[EMAIL PROTECTED]> wrote: > If there are no parameters, it works fine in django. > For example: > > def functionA(): # no parameter > ... > return ... >

Re: reversing url tag with viewname as variable in the context

2008-06-09 Thread ferran
Thanks Alex the path works for me! On Jun 8, 11:11 am, Alex Koshelev <[EMAIL PROTECTED]> wrote: > There is the tickethttp://code.djangoproject.com/ticket/7049 > > On Jun 8, 1:05 pm, ferran <[EMAIL PROTECTED]> wrote: > > > Thanks Alex for confirm my suspicions > > > IMHO this is a great feature

Re: Importing data from 'MS Access' .mdb files

2008-06-09 Thread Garrett Garcia
Ganesh, I just had to tackle the same problem in a django project. I'm sure this isn't the best solution but it works if you don't have access to a Windows machine. Download and install the mdb-tools package: http://mdbtools.sourceforge.net/ In my app I run the mdb-export program from python