纯小白之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}" />
界面展示
下一篇: Yiic介绍
推荐阅读