2017-09-06 11 views

答えて

2

System.Data.SQLiteソースコードが見つかりました。それだけです:

/// <summary> 
/// Creates a database file. This just creates a zero-byte file which SQLite 
/// will turn into a database when the file is opened properly. 
/// </summary> 
/// <param name="databaseFileName">The file to create</param> 
static public void CreateFile(string databaseFileName) 
{ 
    FileStream fs = File.Create(databaseFileName); 
    fs.Close(); 
} 
関連する問題