Re: Subversion Access

2008-05-08 Thread Rahein
This is the only thing I need Subversion for. My path is already so big that I don't really want to add anything to it. On May 7, 4:43 pm, Steve Holden <[EMAIL PROTECTED]> wrote: > Rahein: > > Please also note that you are supposed to adjust your path so svn is > runnable from

Re: Subversion Access

2008-05-08 Thread Rahein
I am sorry I posted to the wrong group. I can repost it there if you like. I will look though the proxy documentation, but we are not running any. So unless our DSL provider is blocking it I don't think that is it. Can anyone just provide me with a Tarball of the latest source? I don't want to

Subversion Access

2008-05-07 Thread Rahein
I am trying to get the Django Trunk downloaded and this is my first excursion into using Subversion. I followed the directions in the installing guide, but when I run the command in subversion's bin folder: svn co http://code.djangoproject.com/svn/django/trunk/ django-trunk I get these error

Re: Newbe questions (firebird)

2008-05-07 Thread Rahein
I am trying to download the trunk from SVN and am getting this message Error: MKACTIVITY of '/svn/!svn/act/b31d46c1-39f8-164f- a712-4e3a3dd6a803': 400 Bad Request (http://code.djangoproject.com) On May 5, 6:19 pm, Ivan Illarionov <[EMAIL PROTECTED]> wrote: > Hi, Rahein, > > The

Re: Newbe questions (firebird)

2008-05-06 Thread Rahein Sorite
help everyone. On Mon, May 5, 2008 at 6:19 PM, Ivan Illarionov <[EMAIL PROTECTED]> wrote: > > Hi, Rahein, > > The Firebird patch and backend is against latest Django trunk and > depends on the newest Django features, especially new QuerySet/Query > classes. Please note t

Re: Newbe questions (firebird)

2008-05-05 Thread Rahein Sorite
Ahh that must be it, thanks. I am using 0.96.1. I am about to head out for the day, but I will try it with the current trunk tomorrow. Thanks for your help Ian. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Newbe questions (firebird)

2008-05-05 Thread Rahein
Thanks for the quick reply Tim, see my other posts. FB is probably the most SQL99 standard SQL DB, so usually the standard statements work. I think FB 2.1 is going to support all 3 different limiting syntax. I changed it to work with ROWS. On May 5, 2:49 pm, Tim Chase <[EMAIL PROTECTED]> wrote:

Re: Newbe questions (firebird)

2008-05-05 Thread Rahein
I am really learning the internals of Django. I changed line 208 in db\models\base.py from: cursor.execute("SELECT 1 FROM %s WHERE %s=%%s LIMIT 1" % \ to: cursor.execute("SELECT 1 FROM %s WHERE %s=%%s ROWS 1" % \ Shouldn't that FB patch have fixed this type of stuff? Did I apply it wrong?

Re: Newbe questions (firebird)

2008-05-05 Thread Rahein
Well I changed \backends\firebird\base.py to print out the SQL statement, it is: SELECT 1 FROM "BOOKS_PUBLISHER" WHERE "ID"=%s LIMIT 1 Instead of LIMIT it should says ROWS. Any idea how to fix this? --~--~-~--~~~---~--~~ You received this message because you

Newbe questions (firebird)

2008-05-05 Thread Rahein
I am trying to get Django working with Firebird as the database backend. I have done some searching and found kinterbasdb and the firebird patch to get it to work with Django. I am trying to follow the free books tutorial, but having problems. First the creation of the tables in the DB didn't