티스토리 뷰
반응형
public SQLiteCommand DBConnection()
{
SQLiteConnection connection = new SQLiteConnection("Data Source=test.db(DB파일경로와 파일명)");
SQLiteCommand command;
try
{
connection.Open();
command = connection.CreateCommand();
}
catch
{
command = null;
}
finally
{
command = null;
connection.Close();
}
return command;
}
반응형
'Data Base > SQLite' 카테고리의 다른 글
sqlite full outer join(wiki에서 발췌) (0) | 2009.08.13 |
---|---|
SQLite3의 몇가지 특이한 점. (0) | 2009.08.13 |
SQLiteSpy (0) | 2009.08.11 |
SQLite 간략 소개 (0) | 2009.08.11 |
SQLite & JAVA (0) | 2009.08.11 |
공지사항