python 2.7 - I'm getting a error in Google App Engine to do with import sqlite3? Can somebody help me please? -
the error getting is:
raise importerror('no module named %s' % fullname)
importerror: no module named _sqlite3
from _sqlite3 import * dbapi2 import * import sqlite3
it has with:
import sqlite3
can me please? i'm using google app engine python on windows 7 machine in case has it.
the appreciate.
thanks
as far aware, google app engine not support sqlite. has own database system, uses vaguely sql language call gql.
to prevent accidently using wrong database, developement environment has intercepted import of sqlite, , has raised error.
Comments
Post a Comment