Re: [Zope-dev] ZSQL method and LIMIT clause

2005-11-03 Thread Thanh Hải , Hà
Thanks Stefan! Sticking max_rows:0 into the lead-in comment does the magic. 2005/11/3, Stefan H. Holek [EMAIL PROTECTED]: *Everything* you can do in the ZMI can be done from code. The ZMI isnot a magic entity, it uses the same APIs as everybody else. With FSZSQLMethods you can stick max_rows: 0

[Zope-dev] ZSQL method and LIMIT clause

2005-11-02 Thread Thanh Hải , Hà
Hello, My problem is I don't know to prevent Zope from adding LIMIT 1000 to the end of each of my ZSQL method (*.zsql). I am developing a filesystem-based product so I can not disable itby settingMaximum Rows to Retrieve to zero in the ZMI interface. I got stuck with this problem for acouple of

Re: [Zope-dev] ZSQL method and LIMIT clause

2005-11-02 Thread Tino Wildenhain
Am Donnerstag, den 03.11.2005, 09:37 +0700 schrieb Thanh Hải, Hà: Hello, My problem is I don't know to prevent Zope from adding LIMIT 1000 to the end of each of my ZSQL method (*.zsql). I am developing a filesystem-based product so I can not disable it by setting Maximum Rows to Retrieve

Re: [Zope-dev] ZSQL method and LIMIT clause

2005-11-02 Thread Stefan H. Holek
*Everything* you can do in the ZMI can be done from code. The ZMI is not a magic entity, it uses the same APIs as everybody else. With FSZSQLMethods you can stick max_rows: 0 into the lead-in comment, BTW. Stefan On 3. Nov 2005, at 03:37, Thanh Hải, Hà wrote: My problem is I don't know