On Thu, Jul 4, 2013 at 9:15 PM, James K. Lowden <jklow...@schemamania.org>wrote:

> On Mon, 01 Jul 2013 23:59:15 -0400
> Igor Tandetnik <i...@tandetnik.org> wrote:
>
> > > 2.  Trying to re-use a single connection to issue a second query
> > > before finalizing the first one should return an error
> >
> > No it should not, and does not. Try it.
> >
> > > because the library is being improperly used.
> >
> > That may be, but it doesn't result in an error.
>

FWIW, just a bit of trivia: for MySQL you can't do two concurrent selects
on the same connection. Its over-the-wire protocol does not support
traversing two selects at the same time. Wrappers which allow that hide
that by loading/caching all data from the first select in advance.


-- 
----- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to