■ 파일 데이터베이스를 사용하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
using System; using System.Data.SQLite; string connectionString = "URI=file:c:\\test.db"; using(SQLiteConnection sqliteConnection = new SQLiteConnection(connectionString)) { sqliteConnection.Open(); // 데이터베이스 파일이 존재하지 않는 경우 생성한다. using(SQLiteCommand sqliteCommand = new SQLiteCommand(sqliteConnection)) { sqliteCommand.CommandText = "SELECT SQLite_VERSION()"; string version = Convert.ToString(sqliteCommand.ExecuteScalar()); Console.WriteLine("SQLite version : {0}", version); } sqliteConnection.Close(); } |