hi, sqlite 3.7+ supports better concurrency (see http://www.sqlite.org/draft/wal.html), on webfaction, there are multiple python versions installed, but python2.7 is built against 3.3.6 so I built from sources sqlite, python 2.7 and now on /home/my_user/ bin/python2.7 I can use latest sqlite
>import sqlite3 >sqlite3.sqlite_version shows 3.7+ if I run /home/my_user/bin/python2.7 web2py.py sqlite3.sqlite_version is 3.7 but if I run uwsgi the way I described in other posts it seems to see the standard one (3.3.6) also I put in uwsgihandler.py first line to be #!/home/my_user/bin/ python2.7 and my question is: how I can enforce to use sqlite 3.7 (is it because it uses the default installed python 2.7)

