did you add the driver to the java classpath?
as I said the bug is not the cause of the problem. this is not a
web2py problem in fact. As you can see from man posts:

http://www.google.com/search?q=SQLException%3A+java.sql.SQLException%3A+No+suitable+driver+found+sqlite&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a

this is a java.sql misconfiguration.



On Nov 28, 1:28 am, pierreth <[email protected]> wrote:
> On Nov 28, 1:49 am, mdipierro <[email protected]> wrote:
>
>
>
> > I found a bug. In gluon/sql.py
>
> > replace
>
> >         elif is_jdbc and self._uri.startswith('sqlite://'):
> >             self._dbname='sqlite'
> >             if uri[9] != '/':
> >                 dbpath = os.path.join(self._folder, uri[14:])
> >             else:
> >                 dbpath = uri[14:]
>
> > with
>
> >         elif is_jdbc and self._uri.startswith('sqlite://'):
> >             self._dbname='sqlite'
> >             if uri[9] != '/':
> >                 dbpath = os.path.join(self._folder, uri[9:])
> >             else:
> >                 dbpath = uri[9:]
>
> > Does this fix anything?
>
> Sorry, I have the same error with this new code. And the file
> 'ge.slite' is still not there.

Reply via email to