sqlite怎么连接的?
谁能给个比较完整的例子?我怎么也连接不上。
连接字符串"Data Source=" + 数据库文件的物理路径 + ";Version=3;Compress=False;";
其他的和一般的数据库操作差不多
SQLiteConnection connection = new SQLiteConnection(connectionString);
SQLiteCommand command = new SQLiteCommand();
.........