欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

在.NET C#中使用sqlite 博客分类: Windows Mobile .netSQLiteCC++C# 

程序员文章站 2024-02-10 20:23:46
...
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,看来必有其过人之处。。。