Re: data field error running mysql 5.0.45 django 0.96.1

2008-05-22 Thread unixdude_from_mars
encounter this. Thank you for your reply I'll write a new veiw function. james On Apr 28, 10:02 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > 2008/4/28 unixdude_from_mars <[EMAIL PROTECTED]>: > > > > > > > I am attempting to query my database for a Da

design patterns

2008-05-22 Thread unixdude_from_mars
Being new to web development I was wondering what the best resource would be for web design patterns implemented in django, js, ajax, dojo. Specifically -- I am interested in dynamic drop down list, where the list items come from my database, but are links that allow one to drill down. Each

DateField error mysql 5.0.45

2008-05-05 Thread unixdude_from_mars
I noticed code that worked fine with an earlier version of mysql accessing a datefield is now broken... Does anyone know if this is already in bug track or is there a simple fix. james --~--~-~--~~~---~--~~ You received this message because you are subscribed to

data field error running mysql 5.0.45 django 0.96.1

2008-04-28 Thread unixdude_from_mars
I am attempting to query my database for a DateField. I use the following lines to set the qset in my view code. query = request.GET.get('q','') if query: ( Q(end__icontains=query) | Q(maintenance_contractor__name__icontains=query) | Q(purchase_order__icontains=query) )