Re: [web2py] Re: MongoDB

2018-11-19 Thread Anthony
https://github.com/web2py/web2py/issues On Monday, November 19, 2018 at 10:08:52 AM UTC-5, Lovedie JC wrote: > > how and where do I open this issue? > Regards > > On Mon, 19 Nov 2018 at 17:46, Anthony wrote: > >> web2py sets cacheable=True for queries it does in the IS_IN_DB validator >> as

Re: [web2py] Re: MongoDB

2018-11-19 Thread Lovedie JC
how and where do I open this issue? Regards On Mon, 19 Nov 2018 at 17:46, Anthony wrote: > web2py sets cacheable=True for queries it does in the IS_IN_DB validator > as well as in SQLFORM.grid. Please open an issue about this. > > Anthony > > On Monday, November 19, 2018 at 8:22:21 AM UTC-5,

Re: [web2py] Re: MongoDB

2018-11-19 Thread Anthony
web2py sets cacheable=True for queries it does in the IS_IN_DB validator as well as in SQLFORM.grid. Please open an issue about this. Anthony On Monday, November 19, 2018 at 8:22:21 AM UTC-5, Lovedie JC wrote: > > I've gone through the code and I haven't done any caching in selects but > still

Re: [web2py] Re: MongoDB

2018-11-19 Thread Lovedie JC
I've gone through the code and I haven't done any caching in selects but still getting the message. On Mon, 12 Nov 2018, 18:04 Leonel Câmara Don't use cache and cacheable in your selects. > > -- > Resources: > - http://web2py.com > - http://web2py.com/book (Documentation) > -

Re: [web2py] Re: MongoDB

2015-05-07 Thread José Ricardo Borba
Yes, I did! Thanks for the advice. But submodule when cloning web2py still doesn't work. Best regards, 2015-05-07 16:25 GMT-03:00 Paolo Valleri paolo.vall...@gmail.com: update your local copy of pydal, there are several updates regarding mongo in master branch Paolo 2015-05-07 21:14

Re: [web2py] Re: MongoDB

2015-05-07 Thread José Ricardo Borba
Allright! Updating pymongo to version 3.0 solves this up! Now I take care of the mongo time / pydal issue! Thanks a lot. 2015-05-07 9:05 GMT-03:00 Paolo Valleri paolo.vall...@gmail.com: You should use pymongo 3.0 On Wednesday, May 6, 2015 at 2:38:56 PM UTC+2, José Borba wrote: I'm very

Re: [web2py] Re: MongoDB adapter

2015-05-07 Thread José Ricardo Borba
YAY Everything is working FINE! Thank you very much, Paolo, Massimo and others. Cheers. 2015-05-04 10:39 GMT-03:00 Ron Chatterjee achatterjee...@gmail.com: What is mongodb adapter? Where do I find that info? On Monday, May 4, 2015 at 8:39:48 AM UTC-4, Paolo Valleri wrote: It should

Re: [web2py] Re: MongoDB

2015-05-07 Thread Paolo Valleri
update your local copy of pydal, there are several updates regarding mongo in master branch Paolo 2015-05-07 21:14 GMT+02:00 José Ricardo Borba jrborba...@gmail.com: Allright! Updating pymongo to version 3.0 solves this up! Now I take care of the mongo time / pydal issue! Thanks a lot.

Re: [web2py] Re: MongoDB adapter

2015-05-04 Thread Paolo Valleri
It should be fixed in trunk Paolo On Saturday, May 2, 2015 at 1:24:32 PM UTC+2, José Borba wrote: OK. Thank you very much again. Cheers. 2015-05-02 8:22 GMT-03:00 Paolo Valleri paolo@gmail.com javascript: : Open an issue to don't forget it,I'll fix it in the next few days Paolo

Re: [web2py] Re: MongoDB adapter

2015-05-04 Thread Ron Chatterjee
What is mongodb adapter? Where do I find that info? On Monday, May 4, 2015 at 8:39:48 AM UTC-4, Paolo Valleri wrote: It should be fixed in trunk Paolo On Saturday, May 2, 2015 at 1:24:32 PM UTC+2, José Borba wrote: OK. Thank you very much again. Cheers. 2015-05-02 8:22 GMT-03:00

Re: [web2py] Re: MongoDB adapter

2015-05-02 Thread José Ricardo Borba
Paolo, Thank you for you quickly response. But I'm working with the latest web2py/Pydal 2.10.4 (downloaded 2.10.3 and updated). I forgot to mention this. I'm sorry. My second bet is that the parser of time (the time_itens above) need to be modified to work with time in mongo, Still not knowing

Re: [web2py] Re: MongoDB adapter

2015-05-02 Thread Paolo Valleri
Open an issue to don't forget it,I'll fix it in the next few days Paolo On May 2, 2015 1:18 PM, José Ricardo Borba jrborba...@gmail.com wrote: Paolo, Thank you for you quickly response. But I'm working with the latest web2py/Pydal 2.10.4 (downloaded 2.10.3 and updated). I forgot to mention

Re: [web2py] Re: MongoDB adapter

2015-05-02 Thread José Ricardo Borba
OK. Thank you very much again. Cheers. 2015-05-02 8:22 GMT-03:00 Paolo Valleri paolo.vall...@gmail.com: Open an issue to don't forget it,I'll fix it in the next few days Paolo On May 2, 2015 1:18 PM, José Ricardo Borba jrborba...@gmail.com wrote: Paolo, Thank you for you quickly

Re: [web2py] Re: MongoDb

2013-12-30 Thread Tushar Tuteja
Hey, Thanks for the answer. Luckily there are no joins, but I need to see what web2py features of DAL won't work. Thanks, Regards, Tushar Tuteja On 30 December 2013 16:44, Alan Etkin spame...@gmail.com wrote: I have an app running on MySQL , I want to use mongoDB instead. I want to help on

Re: [web2py] Re: MongoDb

2013-12-30 Thread Alan Etkin
Thanks for the answer. Luckily there are no joins, but I need to see what web2py features of DAL won't work. To my knowledge, you cannot use the scheduler or Auth.accessible_query, everything else not requiring join queries should work. -- Resources: - http://web2py.com -

Re: [web2py] Re: MongoDB Adapter error in select

2012-05-10 Thread Francisco Costa
I've enumerated fields and colnames and they are like this: fields: id text integer string colnames: city age _id name I believe they don't match and thats why there's this error: File /opt/web2py/gluon/dal.py, line 8134, in select return adapter.select(self.query,fields,attributes) File

Re: [web2py] Re: MongoDB and Web2py

2011-10-12 Thread ~redShadow~
On Wed, 2011-10-12 at 04:07 -0700, David Marko wrote: Massimo adviced me to use something like this previsously: def make_connection(): from pymongo import Connection connection = Connection('localhost', 27017) return connection connection =

Re: [web2py] Re: MongoDB and Web2py

2011-10-02 Thread Bruno Rocha
I used that for some samples and talks, also for a small project. as I I am not doing advanced operations I cant say if it works or not. But for my sample needs worked very well. On Sun, Oct 2, 2011 at 7:39 PM, Massimo Di Pierro massimo.dipie...@gmail.com wrote: At this time my priority is to

Re: [web2py] Re: MongoDB supported by DAL

2011-08-04 Thread António Ramos
Mongo over couch? Why? 2011/8/4 Francisco Costa m...@franciscocosta.com On Aug 4, 3:46 pm, David Marko dma...@tiscali.cz wrote: Also inteersted here. Can afford some time for testing ... This would be great to have. MongoDb is being widely adopted by a larger number of organizations. If

Re: [web2py] Re: MongoDB supported by DAL

2011-08-04 Thread pbreit
Someone probably needs to step up and try to work it out. I don't think it's going to get done with periodic status inquiries here.

Re: [web2py] Re: MongoDB and Web2Py

2011-04-04 Thread Ahmed Bani
I will test it for my new application: x2py = a web2py-powered web-based email client. Yet, another web-based email client!

Re: [web2py] Re: MongoDB and Web2Py

2011-04-04 Thread David J.
Thanks Massimo; I never thought to even try this; I will make a sample project and test this; (For me the other way works; so I wouldn't ask that you implement it in DAL; (but I am happy to test it;) Thanks for your great software. David. On 4/4/11 9:24 AM, Massimo Di Pierro wrote:

Re: [web2py] Re: MongoDB and Web2Py

2011-04-01 Thread Tom Atkins
+1 On 1 April 2011 06:35, David Marko dma...@tiscali.cz wrote: I'm also interested in testing ... David Marko

Re: [web2py] Re: MongoDB and Web2Py

2011-04-01 Thread David J.
While DAL might not support MongDB; you can still use it via mongoengine; On 4/1/11 10:41 AM, Marcel Luethi wrote: Despite a lot of time, I'd like to help as well. MongoDB looks promising. On 1 Apr., 04:58, Massimo Di Pierromassimo.dipie...@gmail.com wrote: Lots of people asked for

Re: [web2py] Re: mongoDb

2010-11-25 Thread Bruno Rocha
from pymongo import Connection ... ... connection = Connection() ... ... ... ... connection.disconnect() In some controllers I tried to keep connection in session or cache, but it fails. 2010/11/25 David Marko dma...@tiscali.cz Where do you store the Pymongo connection object between requests?

Re: [web2py] Re: mongoDb

2010-11-25 Thread Bruno Rocha
also, response._caller can be useful to raise the disconnection 2010/11/25 Bruno Rocha rochacbr...@gmail.com from pymongo import Connection ... ... connection = Connection() ... ... ... ... connection.disconnect() In some controllers I tried to keep connection in session or cache, but