简体   繁体   中英

Attach sqlite3 database in c++

Is there a way to attach a sqlite3 database to an existing connection without using the sqlite3_exec command? Is there a way to do that using the sqlite3_prepare_v2 command?

Regards

我终于通过使用sqlite3_step函数解决了这个问题:

 sqlite3_step(statement);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM