Re: [google-appengine] Re: Static SQLite files

2015-08-30 Thread Tomasz Jamróz
Thanks Alex! That was very helpful! Best, Tomasz On Sunday, August 30, 2015 at 1:09:01 AM UTC+9, Alex Martelli wrote: > > When you want to run in App Engine but also need some modules or extension > that the App Engine sandbox does not support, consider using managed VMs >

Re: [google-appengine] Re: Static SQLite files

2015-08-29 Thread 'Alex Martelli' via Google App Engine
When you want to run in App Engine but also need some modules or extension that the App Engine sandbox does not support, consider using managed VMs (MVMs). For example, here

[google-appengine] Re: Static SQLite files

2015-08-28 Thread Tomasz Jamróz
Hi, I am facing similar problem and found out that the most probable reason is sandbox.py not having '_sqlite3' in _WHITE_LIST_C_MODULES. After adding _sqlite3 to _WHITE_LIST_C_MODULES in my local sandbox.py I managed to both import sqlite3 and execute queries to the database with script runnin

[google-appengine] Re: Static SQLite files

2015-08-28 Thread Patrice (Cloud Platform Support)
Hi Johnny, While I can't promise anything, you would have more traction for such a request by posting it on our issue tracker, here . Post this with as much information as you can, and we'll follow up there to see what can be done. Cheers

[google-appengine] Re: Static SQLite files

2015-08-27 Thread Jonny Bergström
I know this is ages later, but I am constantly having the same "need"; "if only I could at least read sqlite files in memory". I've been fiddling with trying to get a pure python sqlite implementation running and what not but never succeeded at anything. Being able to at least read sqlite files

Re: [google-appengine] Re: Static SQLite files

2011-07-19 Thread 刘浩
sorry you shold say something easy my English is not good 2011/7/19 Tim Hoffman > Hi Jim > > You won't be able to load the sqlite3 module in python on appengine as it > links to a 'binary module' (ie sqlite is not implemented in pure python.) > > You will need to rethink your strategy here if yo

[google-appengine] Re: Static SQLite files

2011-07-19 Thread Tim Hoffman
Hi Jim You won't be able to load the sqlite3 module in python on appengine as it links to a 'binary module' (ie sqlite is not implemented in pure python.) You will need to rethink your strategy here if you want to use appengine Regards Tim -- You received this message because you are subscri

[google-appengine] Re: Static SQLite files

2011-07-18 Thread Gary Frederick
would using fusion tables in app engine do what you want? http://code.google.com/apis/fusiontables/docs/sample_code.html I do NOT know, but it looks like you can use fusion tables in app engine and fusion tables provide SQLite queries. or I could be completely wrong - in which case - never min

[google-appengine] Re: Static SQLite files

2011-07-18 Thread Jim Cipar
That doesn't solve either of my problems. I'm not trying to use SQLite instead of DataStore, I'm trying to use it instead of static CSV files. To paraphrase the SQLite documentation: "don't think of SQLite as a replacement for MySQL, think of it as a replacement for fopen()". I want a lightweigh