Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C# は初めてですが、C# WPF でローカル データベース ファイルを読み取るにはどうすればよいですか?
このチュートリアルを試しました: Link。
しかし、私はそれを機能させることができません.dbファイルをどこに置くべきか、誰かが私に良いチュートリアルを教えてくれたり、正しい方向性を示したりすることができます.
これを試して;
string dbfile = "C:\\.....\\datasabename.db"; string connStr= "Data Source=" + dbfile + ";Version=3;Synchronous=Off;UTF8Encoding=True;"; SQLiteConnection sqlConn= null; sqlConn = new SQLiteConnection(connStr); sqlConn.Open();