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

纯小白之WPF连接SQLite并显示数据

程序员文章站 2024-03-22 09:06:58
...

这里写自定义目录标题

问题描述

几乎没有c#的基础,在学会使用控制台程序连接SQLite并查询数据后,萌生了使用WPF的形式再来一遍的想法,但是在网上查到的资料总是出现一丢丢的问题,最后在熬了一段时间后解决了问题。

后台代码

private void Button_Click(object sender, RoutedEventArgs e)
        {
            string dbPath = @"Datasource=C:\sqlite\try.db"; //连接数据库
            SQLiteConnection conn = new SQLiteConnection(dbPath); //实例化连接
            conn.Open(); //打开数据库
            string sql = "select * from try";//语句
            SQLiteDataAdapter cmdQ = new SQLiteDataAdapter(sql, conn);//读取
            DataSet ds = new DataSet();
            //ds.Clear();
            DataTable dataTable = new DataTable();
            cmdQ.Fill(ds, "dataTable");
            DataGrid.DataContext = ds;
        }

前台代码

 <DataGrid  Name="DataGrid" HorizontalAlignment="Left" Height="100" VerticalAlignment="Top" Width="421" Margin="125,104,0,0" ItemsSource="{Binding dataTable}" />

界面展示

纯小白之WPF连接SQLite并显示数据

相关标签: sqlite wpf c#