随笔 - 59  文章 - 20  评论 - 61  阅读 - 85494

VS2015 Xamarin使用经验4-SQLite ORM

 

新建Android空白项目,NuGet下载SQLite.Net-PCL

 

 

定义实体类:

复制代码
public class Book
    {
        [PrimaryKey, AutoIncrement]
        public int id { get; set; }

        public string Name { get; set; }//书名

        public DateTime PublishDate { get; set; }//出版日期

        public string Author { get; set; }//作者

        public float Price { get; set; }//价格
    }
复制代码

 

 

定义数据库,在数据库的构造函数中创建数据表:

复制代码
public class MyBookDB : SQLiteConnection
    {
        //定义属性,便于外部访问数据表
        public TableQuery<Book> Books { get { return this.Table<Book>(); } }

        public MyBookDB(string dbPath) : base(new SQLitePlatformAndroid(), dbPath)
        {
            //创建数据表
            CreateTable<Book>();
        }
    }
复制代码

 

 

页面凑合一下

复制代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <Button
        android:id="@+id/btnAdd"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Add" />
    <Button
        android:id="@+id/btnModify"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Modify" />
    <Button
        android:id="@+id/btnDel"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Del" />
    <Button
        android:id="@+id/btnQuery"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Query" />
    <Button
        android:id="@+id/btnClear"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Clear" />
    <Button
        android:id="@+id/btnRefresh"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Refresh" />
    <ListView
        android:minWidth="25px"
        android:minHeight="25px"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/lsvRecords" />
</LinearLayout>
复制代码

 

 

数据库访问代码,增删改查:

复制代码
public class MainActivity : Activity
    {
        private ArrayAdapter<string> adapter;
        private ListView lsvRecords;
        private List<string> records;

        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Set our view from the "main" layout resource
            SetContentView(Resource.Layout.Main);

            //数据库文件路径
            //要求WRITE_EXTERNAL_STORAGE权限
            string dbPath = Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal), "book.db");

            // Get our button from the layout resource,
            // and attach an event to it
            Button btnAdd = FindViewById<Button>(Resource.Id.btnAdd);
            btnAdd.Click += (ss, ee) =>
            {
                List<Book> books = new List<Book>()
                {
                    new Book() { Name = "射雕英雄传", PublishDate = new DateTime(1960, 1, 1), Author = "金庸", Price = 10.5f },
                    new Book() { Name = "神雕侠侣", PublishDate = new DateTime(1960, 2, 2), Author = "金庸", Price = 12.5f },
                    new Book() { Name = "倚天屠龙记", PublishDate = new DateTime(1960, 3, 3), Author = "金庸", Price = 16.5f },
                    new Book() { Name = "小李飞刀", PublishDate = new DateTime(1965, 5, 5), Author = "古龙", Price = 13.5f },
                    new Book() { Name = "绝代双骄", PublishDate = new DateTime(1965, 6, 6), Author = "古龙", Price = 15.5f },
                };

                using (var db = new MyBookDB(dbPath))
                {
                    int count = db.InsertAll(books);
                    System.Diagnostics.Debug.Print($"{DateTime.Now}, 插入{count}条记录");
                }
            };

            Button btnModify = FindViewById<Button>(Resource.Id.btnModify);
            btnModify.Click += (ss, ee) =>
            {
                using (var db = new MyBookDB(dbPath))
                {
                    var book = db.Books.FirstOrDefault(x => x.Name == "绝代双骄");
                    if (book != null)
                    {
                        book.Price += 1;
                        int count = db.Update(book);
                        System.Diagnostics.Debug.Print($"{DateTime.Now}, 修改{count}条记录");
                    }
                }
            };

            Button btnDel = FindViewById<Button>(Resource.Id.btnDel);
            btnDel.Click += (ss, ee) =>
            {
                using (var db = new MyBookDB(dbPath))
                {
                    int count = db.Books.Delete(x => x.Name == "绝代双骄");
                    System.Diagnostics.Debug.Print($"{DateTime.Now}, 删除{count}条记录");
                }
            };

            Button btnClear = FindViewById<Button>(Resource.Id.btnClear);
            btnClear.Click += (ss, ee) =>
            {
                using (var db = new MyBookDB(dbPath))
                {
                    int count = db.Books.Delete(x => true);
                    System.Diagnostics.Debug.Print($"{DateTime.Now}, 清除{count}条记录");
                }
            };

            Button btnQuery = FindViewById<Button>(Resource.Id.btnQuery);
            btnQuery.Click += (ss, ee) =>
            {
                using (var db = new MyBookDB(dbPath))
                {
                    var books = db.Books.Where(x => x.Author == "金庸").OrderByDescending(x => x.PublishDate).ToList();

                    System.Diagnostics.Debug.Print($"{DateTime.Now}, 查到{books.Count}条记录");
                    records.Clear();
                    books.ForEach(x => records.Add($"{x.id}, {x.Name}, {x.Price}, {x.Author}, {x.PublishDate:yyyy-MM-dd}"));

                    adapter.Clear();
                    adapter.AddAll(records);
                }
            };

            Button btnRefresh = FindViewById<Button>(Resource.Id.btnRefresh);
            btnRefresh.Click += (ss, ee) =>
            {
                using (var db = new MyBookDB(dbPath))
                {
                    var books = db.Books.ToList();

                    records.Clear();
                    books.ForEach(x => records.Add($"{x.id}, {x.Name}, {x.Price}, {x.Author}, {x.PublishDate:yyyy-MM-dd}"));

                    adapter.Clear();
                    adapter.AddAll(records);
                }
            };

            records = new List<string>();
            records.Add("没有可显示的记录1");
            lsvRecords = FindViewById<ListView>(Resource.Id.lsvRecords);
            adapter = new ArrayAdapter<string>(this, Android.Resource.Layout.SimpleListItem1, records);
            lsvRecords.Adapter = adapter;
        }
    }
复制代码

 

 

 

 

注意:

1,要求WRITE_EXTERNAL_STORAGE权限;

2,更新简单的string列表,用adapter.Clearadapter.AddAll有效,用adapter.NotifyDataSetChanged无效;

 

采用了同样的SQLite.Net-PCL ORMAndroidWinform的代码几乎一模一样,可以跨平台共用一套业务代码,真正体现Xamarin的价值。

 

posted on   SunnyTrudeau  阅读(139)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 25岁的心里话
· 按钮权限的设计及实现
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示