Swift:SQLite错误“默认标签只能出现在switch语句中”

时间:2016-10-21 11:17:39

标签: swift xcode sqlite swift2.3

我对SQLite甚至任何数据库都不熟悉

我正在学习如何使用它

但是出现了一些错误

喜欢这张照片

http://imgur.com/a/3Z5Tn

有什么想法吗?

以上是我的代码

class ViewController: UIViewController {
    var db :sqliteConnect?

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
        // 資料庫檔案的路徑
        let urls = FileManager.default.urls(
        for: .documentDirectory, in: .userDomainMask)
        let sqlitePath = urls[urls.count-1].absoluteString + "sqlite3.db"

        // 印出儲存檔案的位置
        print(sqlitePath)

        // SQLite 資料庫
        db = SQLiteConnect(path: sqlitePath)
    }
}

0 个答案:

没有答案