Notice
Recent Posts
Recent Comments
Link
목록My Library/Swift 꺼내먹기 (1)
티라미수 코딩생활

복사&붙여넣기 후 프로젝트에 맞게 수정해서 사용하기! [ Import ] import SQLite3 [ SQLite : Create (viewDidLoad) ] // SQLite 생성하기 func createSQLite(){ let fileURL = try! FileManager.default.url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: false).appendingPathComponent(".sqlite") if sqlite3_open(fileURL.path, &db) != SQLITE_OK{ // SQLite가 열리지 않으면? print("error opening database") } if sqlite3..
My Library/Swift 꺼내먹기
2021. 7. 27. 16:06