在.NET C#中使用sqlite

阅读更多
sqlite是最近比较火的一个小型embeddable RDBMS。 用C实现的,开源,memory footprint非常小,而且对不同的语言有很多wrapper支持。

在.NET中使用sqlite,其实很简单,主要是找个.NET的wrapper。看了几个,最终选了 phpguru的SQLite.NET

把sqlite.dll和SQLiteClient.dll放在.NET的current path下面,在项目的references中添加SQLiteClient.dll

程序中引用
c# 代码
 
  1. using SQLite.NET;  

使用方法,打开db:
c# 代码
 
  1. try  
  2.             {  
  3.                 Console.WriteLine("opening db...");  
  4.                 // Open database  
  5.                 SQLiteClient db = new SQLiteClient("c:\test.db");  
  6.   
  7.             }  
  8.             catch (SQLiteException e)  
  9.             {  
  10.                 Console.WriteLine("Fatal error: {0}", e.Message);  
  11.                 return;  
  12.             }  
select应用:
c# 代码
 
  1. ArrayList tables = db.GetColumn("SELECT name FROM sqlite_master WHERE type = 'table'");  
  2.   
  3.             foreach (string tableName in tables)  
  4.             {  
  5.                 Console.WriteLine("\t" + tableName);  
  6.             }  

其他update,insert,delete都支持得不错。 sqlite小巧玲珑,用起来十分方便。
Google Gears和Adobe AIR都在使用sqlite,看来必有其过人之处。。。

你可能感兴趣的:(.net,SQLite,C,C++,C#)