标签:style blog http 使用 strong 文件
这是“windows phone mango本地数据库(sqlce)”系列短片文章的第八篇。 为了让你开始在Windows Phone Mango中使用数据库,这一系列短片文章将覆盖所有你需要知道的知识点。我将谈谈在windows phone mango本地数据库中使用Connection Strings的问题。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
private const string ConnectionString = @"isostore:/CountryDB.sdf" ; public MainPage() { InitializeComponent(); using (CountryDataContext context = new CountryDataContext(ConnectionString)) { if (!context.DatabaseExists()) { // create database if it does not exist context.CreateDatabase(); } } } |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
private const string ConnectionString = @"Data Source = ‘appdata:/CountryDB.sdf‘; File Mode = read only;" ; public MainPage() { InitializeComponent(); using (CountryDataContext context = new CountryDataContext(ConnectionString)) { if (!context.DatabaseExists()) { // create database if it does not exist context.CreateDatabase(); } } } |
示例3:带有特定的Culture的数据库
1
|
private const string ConnectionString = @"Data Source = ‘CountryDB.sdf‘; Culture Identifier = fr-FR; Case Sensitive = true;" ; |
注释:你可以参考MSDN文档:http://msdn.microsoft.com/zh-cn/library/system.globalization.cultureinfo(v=vs.71).aspx
示例4:数据库加密String format: "Data Source=‘isostore:/DIRCTORY/FILE.sdf‘;Password=‘SomePassword‘"
1
|
private const string ConnectionString = @"Data Source=‘isostore:/CountryDB.sdf‘;Password=‘MyPassword‘;" ; |
这篇文章我谈论了在windows phone mango本地数据库中的连接字符串以及如何使用它。请继续关注接下来的文章。
Windows Phone本地数据库(SQLCE):9、Connection Strings(翻译) (转),布布扣,bubuko.com
Windows Phone本地数据库(SQLCE):9、Connection Strings(翻译) (转)
标签:style blog http 使用 strong 文件
原文地址:http://www.cnblogs.com/zgqys1980/p/3838276.html