Re: Sorting problem

2009-07-15 Thread Linda van der Pal
Thanks a million, that did the trick! I had tried that before, but had probably made some other mistake then. Regards, Linda Jeff Butler wrote: I don't think you can send the order by clause as a prepared statement parameter. You should try string substitution instead. Also, you don't need t

Re: Sorting problem

2009-07-15 Thread Jeff Butler
I don't think you can send the order by clause as a prepared statement parameter. You should try string substitution instead. Also, you don't need the tag here: order by $sort$ $sortAsc$ Jeff Butler On Wed, Jul 15, 2009 at 9:08 AM, Linda van der Pal wrote: > Hello, > > Can anybody tell me