Hot Massages Guide For Men, Women and Teens..Solve Your All Problems Related To Your Massages Concepts....

2007-12-20 Thread xochitl.nalehdsj
Get Hot Massages Guide For Men, Women and Teens..Solve Your All Problems Related To Your Massages LifeSo Dudes..Get here inn to make your mind relaxedJust Click and Enjoy the World of Hot Massage http://massagestips.blogspot.com/ http://massagestips.blogspot.com/ --~--~-~

Re: signals

2007-12-20 Thread Jeremy Dunck
On Jun 13, 2007 8:29 PM, Brian Harring <[EMAIL PROTECTED]> wrote: ... > Either way, I'm still playing locally, but I strongly suspect I'll > wind up chucking the main core of dispatch.dispatcher and folding it > into per signal handling; may not pan out, but at this point it seems > the logical ne

Re: Odd MySQL bug

2007-12-20 Thread Malcolm Tredinnick
On Fri, 2007-12-21 at 03:22 +0100, Patryk Zawadzki wrote: [...] > Malcolm, wouldn't it be reasonable to just call "SET SQL_AUTO_IS_NULL > = 0" whenever a connection is established? It would prevent people > from hitting this bug even when using custom queries (like > QuerySet.extra) and would eli

Re: Odd MySQL bug

2007-12-20 Thread Patryk Zawadzki
2007/12/21, Malcolm Tredinnick <[EMAIL PROTECTED]>: > Okay, everybody (or, at least, some people) are putting way to much > thought into this. Stop now. > > I've already worked around it in queryset-refactor so that we never > generate this type of query. It was used in a test and as a way to avoi

Re: Odd MySQL bug

2007-12-20 Thread Malcolm Tredinnick
On Thu, 2007-12-20 at 13:12 -0800, AmanKow wrote: > Ok, I'm stymied... it's a session variable only, not global and > therefore I cannot change the default value in the options file. > Also, it is not dynamic, which means that it requires a server restart > to be effective, but then it uses the d

Re: Odd MySQL bug

2007-12-20 Thread Collin Grady
AmanKow said the following: > Well, the value of this can be accessed via: > SELECT @@session.sql_auto_is_null; > which gets you the result of 1 > If you then perform a > SET SESSION sql_auto_is_null=0; > and perform the above query again, the value is. 1 > As I mentioned earlier, it isn't dyn

Re: Odd MySQL bug

2007-12-20 Thread AmanKow
Well, the value of this can be accessed via: SELECT @@session.sql_auto_is_null; which gets you the result of 1 If you then perform a SET SESSION sql_auto_is_null=0; and perform the above query again, the value is. 1 As I mentioned earlier, it isn't dynamic anyway, so even if it changed to 0 th

Re: Odd MySQL bug

2007-12-20 Thread Collin Grady
AmanKow said the following: > Any mysql gurus out there with some advice as to how to turn off this > behavior? The mysql docs and several things I've found online (including code from Rails) indicates that simply "SET SQL_AUTO_IS_NULL=0" should work, unless they broke it :) -- Collin Grady Th

Re: Odd MySQL bug

2007-12-20 Thread AmanKow
Ok, I'm stymied... it's a session variable only, not global and therefore I cannot change the default value in the options file. Also, it is not dynamic, which means that it requires a server restart to be effective, but then it uses the default behavior, oh, my head hurts. Ok, I take it back...

Re: Odd MySQL bug

2007-12-20 Thread AmanKow
Yikes!... it's a session variable only... makes it hard to change the default behavior... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-develope

Re: Odd MySQL bug

2007-12-20 Thread AmanKow
I don't think mysql adding a setting to turn off/on behavior that allows integration with some odbc applications as evidence of hallucinogen use . It is an unfortunate choice to have the non-standard behavior as the default, however. Other than the above test, I find it hard to imagine someone f

Re: How do you set a cookie without a response? Like this

2007-12-20 Thread David Cramer
We have finalized our middleware to handle this. (http:// www.davidcramer.net/code/62/set-cookies-without-a-response-in-django.html) I'm not sure all developers point of view on this, but if there's enough interest I'll create a ticket/patch for it. On Dec 13, 3:52 pm, David Cramer <[EMAIL PROTE

Re: Generic Relation: Alter Table

2007-12-20 Thread Alex Koshelev
It's normal behaviour:) GenericRelation is just "fake" field that doesn't produce real table field On 20 дек, 16:23, madhav <[EMAIL PROTECTED]> wrote: > I did it, but its not showing up the new field(which is "summary" in > my case) in the Create Statement, nor is at the Alter table part. > > On

Hot Massages Guide For Men, Women and Teens..Solve Your All Problems Related To Your Massages Concepts....

2007-12-20 Thread xochitl.nalehdsj
Get Hot Massages Guide For Men, Women and Teens..Solve Your All Problems Related To Your Massages LifeSo Dudes..Get here inn to make your mind relaxedJust Click and Enjoy the World of Hot Massage http://massagestips.blogspot.com/ http://massagestips.blogspot.com/ --~--~-~

Re: Generic Relation: Alter Table

2007-12-20 Thread madhav
I did it, but its not showing up the new field(which is "summary" in my case) in the Create Statement, nor is at the Alter table part. On Dec 20, 5:59 pm, "Patryk Zawadzki" <[EMAIL PROTECTED]> wrote: > 2007/12/20, madhav <[EMAIL PROTECTED]>: > > > > > > > as a part of using generic relations, i

Re: Generic Relation: Alter Table

2007-12-20 Thread Alex Koshelev
See CREATE sql statements for example On 20 дек, 15:52, madhav <[EMAIL PROTECTED]> wrote: > as a part of using generic relations, i got struck up at one point, > where i need to run the sql to have a field: > summary = generic.GenericRelation(Summary) > > where Summary is a class defined as: > c

Re: Generic Relation: Alter Table

2007-12-20 Thread Patryk Zawadzki
2007/12/20, madhav <[EMAIL PROTECTED]>: > > as a part of using generic relations, i got struck up at one point, > where i need to run the sql to have a field: > summary = generic.GenericRelation(Summary) > > where Summary is a class defined as: > class Summary(models.Model): > id = models.Aut

Generic Relation: Alter Table

2007-12-20 Thread madhav
as a part of using generic relations, i got struck up at one point, where i need to run the sql to have a field: summary = generic.GenericRelation(Summary) where Summary is a class defined as: class Summary(models.Model): id = models.AutoField(primary_key=True) content_type = models.Fore

Re: Dynamically adding methods and properties - Good or Bad?

2007-12-20 Thread Aidas Bendoraitis
Thanks for your answer, Jacob. I read the page in wikipedia and actually I see some similar problems in overwriting third-party classes (or using custom descriptors for third-party functions, or using events, signals or hooks in programming) as in monkey-patching: if a class changes, the custom ex