> Le 6 août 2019 à 10:27, Olivier Mascia <o...@integral.be> a écrit :
> 
> Using 3.29.0 with SQLITE_DQS.
> 
> sqlite3 test1.db "create table A(I integer);"
> sqlite3 test2.db "create table B(J integer);"
> 
> sqlite3 test1.db
> sqlite> .schema
> CREATE TABLE A(I integer);
> 
> sqlite> attach 'test2.db' as cloud;
> sqlite> .schema
> Error: no such column: cloud
> sqlite> detach cloud;
> 
> sqlite> attach 'test2.db' as 'cloud';
> sqlite> .schema
> Error: no such column: cloud
> sqlite> detach cloud;
> 
> sqlite> attach 'test2.db' as "cloud";
> sqlite> .schema
> Error: no such column: cloud
> sqlite> detach cloud;

I can confirm that this checkin (after 3.29.0 release):
https://www.sqlite.org/src/info/fcd937d9786a82ef
already fixed this issue.

—  
Best Regards, Meilleures salutations, Met vriendelijke groeten, Mit besten 
Grüßen,
Olivier Mascia



_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to