반응형 wpf sqlite2 WPF + SQLite 데이터 삭제 (Delete) 1 2 3 4 SQLiteConnection conn = new SQLiteConnection("Data Source=db.sqlite;Version=3;");//경로 포함할것 sql = "delete from 테이블 where 조건"; //예를 들면 field1="1" SQLiteCommand command = new SQLiteCommand(sql, conn); int result = command.ExecuteNonQuery(); Colored by Color Scripter cs 이런식으로 저는 했습니다. 기본 sql 문법만 알면 간단하게 얼마든지 다양하게 활용 하시면 되겠습니다! 2019. 10. 23. WPF + SQLite 데이터 검색 및 Datagrid 표현 (Select) 1 2 3 4 5 6 7 SQLiteConnection conn = new SQLiteConnection("Data Source=파일 경로+db명;Version=3;"); SQLiteCommand sql_cmd = ((MainWindow)Application.Current.MainWindow).conn.CreateCommand(); sql_cmd.CommandText = "SELECT * FROM 테이블이름"; DataSet DST = new DataSet(); SQLiteDataAdapter SDA = new SQLiteDataAdapter(sql_cmd); SDA.Fill(DST); data_grid.DataContext = DST.Tables[0]; //본인 datagrid name Colored .. 2019. 10. 23. 이전 1 다음 반응형