Re: Does it matter what DB engine you use?

2006-04-01 Thread James Bennett
On 4/2/06, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > django has transactions? i didnt see any anouncement. http://code.djangoproject.com/changeset/2457 -- "May the forces of evil become confused on the way to your house." -- George Carlin --~--~-~--~~~---~--~-

Re: mini-wiki advice

2006-04-01 Thread Julio Nobrega
Translation from Wiki to HTML "on-the-fly" (to display) are fine. Don't prebuild and store the HTML because you might want to change the presentation of a wiki tag later. You can use the Title field to get the revisions and its sequence, if you order by the primary key, since it increments. (

Re: Does it matter what DB engine you use?

2006-04-01 Thread Kenneth Gonsalves
On Sunday 02 Apr 2006 12:34 pm, James Bennett wrote: > > ACID, so is now not suitable for mission critical applications. > > But when it does, i feel postgres would be the way to go. > > Sort of OT, but MySQL with InnoDB tables claims to give ACID > compliant transaction support. And Django now ha

Re: Does it matter what DB engine you use?

2006-04-01 Thread James Bennett
On 4/2/06, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > Its a question of standards. Postgres works at trying to comply with > SQL standards - which means that migration to other standards > compliant databases is easier - but then django masks all that. > Secondly postgres is ACID compliant - b

Re: Does it matter what DB engine you use?

2006-04-01 Thread Kenneth Gonsalves
On Sunday 02 Apr 2006 8:39 am, Noah wrote: > I like PostgreSQL as a database, however the Windows installer > makes a user that you can't get rid of on XP Home and thusly > can't reinstall and you can't ever switch to that user. So it's > annoying. > > I was wondering if there were any practical d

Re: mini-wiki advice

2006-04-01 Thread akaihola
Wouldn't it be more useful to store the revision number as a field instead of building a chain of links for the revision history? I'm not sure how straightforward it is to fetch the record with the largest revision number in Django though, but a boolean 'current' field would be a quick work-around

Re: Does it matter what DB engine you use?

2006-04-01 Thread James Bennett
On 4/1/06, Noah <[EMAIL PROTECTED]> wrote: > I was wondering if there were any practical differences (other than > speed) ie features not working or working different based on whatever > db you use? Other than changes you might have to make to your SQL > statments? I believe Django tries to take

Re: How to query roots in a model hierarchy

2006-04-01 Thread shredwheat
Using the subversion trunk I finally got this working. >>> categories.get_list(parent__isnull=True) Magic, I didn't realize there was an 'isnull' comparison mode. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "D

Does it matter what DB engine you use?

2006-04-01 Thread Noah
I'm looking to start learning django and I had a Windows XP Home Edition laptop I'd like top use as my development machine. I like PostgreSQL as a database, however the Windows installer makes a user that you can't get rid of on XP Home and thusly can't reinstall and you can't ever switch to that

Re: Anyone using RazorLogix for hosting?

2006-04-01 Thread Kenneth Gonsalves
On Sunday 02 Apr 2006 12:54 am, ZebZiggle wrote: > There may be some issues with Django running in a 75meg > environment. Apparently mod_python can be a bit of a pig with > thread usage. I'll know shortly :-) every hit starts a fresh apache child - so 5 or 6 hits will take you to 150 mb as zetta

$6

2006-04-01 Thread espereederly
HOW TO MAKE EASY MONEY This seems to really have potential. This is the way the original post appeared when I first found it. Read it all then decide for yourself. It works for me! I found this on a bulletin board and decided to try it. A little while back, I was browsing through ne

Re: What is Caching my DB

2006-04-01 Thread Siah
Thanks Michael, I did it all, non seems to help. Its wired that I am the only one with this problem. I am thinking of reconfiguring my site in hope of having this problem go away. Thanks, Sia --~--~-~--~~~---~--~~ You received this message because you are subscr

Re: How to query roots in a model hierarchy

2006-04-01 Thread Max Battcher
Malcolm Tredinnick wrote: > On Sat, 2006-04-01 at 00:11 -0800, shredwheat wrote: >> Using a hierarchy of models like the example shown on this cookbook >> page. How do you query for the root level objects? Can it be done with >> a single query? Or do I loop over and test on the Python side? >> >>

Re: overriding User class

2006-04-01 Thread Max Battcher
Don Arbow wrote: > > On Apr 1, 2006, at 2:14 AM, [EMAIL PROTECTED] wrote: > >> I'm wondering what is the way to achieve User overriding if I want, >> say, add >> a new field to the django User class? >> Is there a way to do that without modifying the django source code ? >> > > Have a lo

Re: Anyone using RazorLogix for hosting?

2006-04-01 Thread ZebZiggle
Haven't used hat one , but I did just sign up with http://www.zettai.net/ to host my Django app. The big driver for me was a Virtual Private Server (VPS), so I can get root access and a dedicated IP address. I'm not sure if razorlogix has that or not. The rest looks comparable . I can vouch for th

Re: overriding User class

2006-04-01 Thread Don Arbow
On Apr 1, 2006, at 2:14 AM, [EMAIL PROTECTED] wrote: > I'm wondering what is the way to achieve User overriding if I want, > say, add > a new field to the django User class? > Is there a way to do that without modifying the django source code ? > Have a look at this for one way to do it

Anyone using RazorLogix for hosting?

2006-04-01 Thread tonemcd
Hi all, Razorlogix, http://www.razorlogix.net/?do=features, looks quite a neat hosting service (mod_python, one slick installs for django, trac, svn, MySQL and PostGres etc.) Does anyone have any opinions on them? Thanks a lot in advance, Tone. --~--~-~--~~~---~--~-

overriding User class

2006-04-01 Thread zeuxis
Hi all, I'm wondering what is the way to achieve User overriding if I want, say, add a new field to the django User class? Is there a way to do that without modifying the django source code ? -- Zeuxis --~--~-~--~~~---~--~~ You received this mes

Re: How to query roots in a model hierarchy

2006-04-01 Thread Malcolm Tredinnick
On Sat, 2006-04-01 at 00:11 -0800, shredwheat wrote: > Using a hierarchy of models like the example shown on this cookbook > page. How do you query for the root level objects? Can it be done with > a single query? Or do I loop over and test on the Python side? > > http://code.djangoproject.com/wi

How to query roots in a model hierarchy

2006-04-01 Thread shredwheat
Using a hierarchy of models like the example shown on this cookbook page. How do you query for the root level objects? Can it be done with a single query? Or do I loop over and test on the Python side? http://code.djangoproject.com/wiki/CookBookCategoryDataModel --~--~-~--~~