如何在mono下使用System.Data.SQLite?

前端之家收集整理的这篇文章主要介绍了如何在mono下使用System.Data.SQLite?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我下载了 System.Data.SQLite,并尝试编译以下示例代码.
using System;
using System.Data;
using System.Data.Common;
using System.Data.sqlite;

namespace test
{
  class Program
  {
    static void Main(string[] args)
    {
      sqliteConnection.CreateFile("/Users/smcho/Desktop/sqlite-1/example/mydatabasefile.db3");
    }
  }
}

我运行了以下命令

mcs db.cs -r:System.Data.dll -r:System.Data.sqlite.dll

但是,我收到如下错误消息.

** (/opt/local/lib/mono/1.0/mcs.exe:43249): WARNING **: The class System.Data.Common.DbConnection could not be loaded,used in System.Data,Version=2.0.0.0,Culture=neutral,PublicKeyToken=b77a5c561934e089
db.cs(12,7): error CS0103: The name `sqliteConnection' does not exist in the current context
Compilation Failed: 1 error(s),0 warnings

可能有什么问题?

使用gmcs而不是mcs解决了这个问题.
gmcs db.cs -r:System.Data.dll,System.Data.sqlite.dll
原文链接:https://www.f2er.com/sqlite/453029.html

猜你在找的Sqlite相关文章