xamarin使用oracle数据库,XamarinSQLite教程在Xamarin.Android项目中使用数据库

XamarinSQLite教程在Xamarin.Android项目中使用数据库

Xamarin.Android

项目中使用预设数据库的具体操作步骤如下:

(

1

)创建一个

Xamarin.Android

项目,如

AndroidSQLiteDemo

(

2

)在

AndroidSQLiteDemo

项目的

Resources

文件夹下创建一个

Raw

文件夹。

(

3

)将上一节中创建的

Documents.db

数据库拖动到

Raw

文件夹中。

(

4

)打开

MainActivity.cs

文件,将

Documents.db

数据库的内容复制到

/data/data/[your packageName/files/ MyDocuments.db

中,代码如下:

using System;

using Android.App;

using Android.Content;

using Android.Runtime;

using Android.Views;

using Android.Widget;

using Android.OS;

using Android.Support.V7.App;

using System.IO;

using System.Text;

namespace AndroidSQLiteDemo

{

[Activity(Label = "@string/app_name", MainLauncher = true, LaunchMode = Android.Content.PM.LaunchMode.SingleTop, Icon = "@drawable/icon")]

public class MainActivity : AppCompatActivity

{

protected override void OnCreate(Bundle bundle)

{

base.OnCreate(bundle);

SetContentView(Resource.Layout.main);

var toolbar = FindViewById(Resource.Id.toolbar);

if (toolbar != null)

{

SetSupportActionBar(toolbar);

SupportActionBar.SetDisplayHomeAsUpEnabled(false);

SupportActionBar.SetHomeButtonEnabled(false);

}

// Get our button from the layout resource,

// and attach an event to it

var clickButton = FindViewById(Resource.Id.my_button);

clickButton.Click += (sender, args) =>

{

var sqliteFilename = "MyDocuments.db";

string documentsPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal); // Documents folder

var path = Path.Combine(documentsPath, sqliteFilename);

Console.WriteLine("数据库文件的目录:{0}",path);

if (!File.Exists(path))

{

var s = Resources.OpenRawResource(Resource.Raw.Documents);

//创建写入列

FileStream writeStream = new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write);

ReadWriteStream(s, writeStream);

}

};

}

void ReadWriteStream(Stream readStream, Stream writeStream)

{

int Length = 256;

Byte[] buffer = new Byte[Length];

int bytesRead = readStream.Read(buffer, 0, Length);

// 写入所需字节

while (bytesRead > 0)

{

writeStream.Write(buffer, 0, bytesRead);

bytesRead = readStream.Read(buffer, 0, Length);

}

readStream.Close();

writeStream.Close();

}

}

}

运行程序后,初始状态如图

1.31

所示。

17caa5a9a19990caf2feb774da6fd336.png

轻拍

HELLO WORLD,CLICK ME!

按钮后,会在输出窗口输出以下的内容:

数据库文件的目录:

/data/user/0/com.company.AndroidSQLiteDemo/files/MyDocuments.db

此时

Documents.db

数据库中的内容就会复制到

MyDocuments.db

文件中。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值