On Feb 15, 2010, at 11:36 PM, Hick Gunter wrote:

> In SQLite 3.5.9 it used to be possible to write
>
> sqlite> ATTACH '/some/unix/file/name.db' AS mydb;
>
>
> In SQLite 3.6.22 this results in the error message
>
> Error: unable to resolve operation

I don't think the above is an SQLite error message. Googling for it
only turns up hits related to Java. Are you using an unmodified
SQLite?

> The problem seems to be the indicated line in the function  
> resolveAttachExpr
> (located in attach.c). If the expression ALREADY IS a string, then  
> it makes no
> sense to call sqlite3ResolveExprNames() which CANNOT HANDLE a string.

ResolveExprNames() should be a no-op on a string expression. So
the call is not helpful, but shouldn't be causing you any problems.

Dan.

_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to