我加载了SQLite的 .dll文件  想打开数据库操作的(语法是 托管C++)  下面是代码的一部分 运行到 con->Open()的时候报错 String ^ConnectionString ="Dirver={ Navicat for SQLite (*.DB)};DBQ= f:\\aa\\server.db;"; if(!System::IO::File::Exists(ConnectionString))
{ SQLiteCommand ^dbc  = gcnew SQLiteCommand();
SQLiteConnection ^con = gcnew SQLiteConnection(ConnectionString);
con->Open();错误是:An unhandled exception of type 'System.ArgumentException' occurred in System.Data.SQLite.dllAdditional information: Data Source cannot be empty.  Use :memory: to open an in-memory database求解!!