我知道有很多相关的帖子,但我注意到他们都没有解释这样做的方式,大多数人说要查看文档,我看起来已经看了但似乎缺乏有关将预填充数据库带入的信息迅速
我有一个旧的数据库.db,超过60k行三列,我想使用FMDB包装器带到我的swift SQLite应用程序,该应用程序正在iPhone中运行,我试图将contacts.db拖到应用程序,但我无法访问它。在设备中运行时,应用程序始终会启动一个新数据库。
我将数据库复制到支持文件文件夹并尝试在app文件夹中,无法访问
有没有人这样做并且愿意告诉我该怎么做?
总之,我正在寻找的是将我的contacts.db插入到应用程序(包)中,这样我就可以在设备中访问而不是在模拟器中访问。我不需要在设备中添加删除或编辑contact.db,数据库加载了所需的所有信息,用户只能进行搜索并能够显示结果。
class ViewController: UIViewController {
@IBOutlet weak var name: UITextField!
@IBOutlet weak var address: UITextField!
var databasePath = NSString()
override func viewDidLoad() {
super.viewDidLoad()
if let resourceUrl = NSBundle.mainBundle().URLForResource("contacts", withExtension: "db") {
if NSFileManager.defaultManager().fileExistsAtPath(resourceUrl.path!)
}
let filemgr = NSFileManager.defaultManager()
let dirPaths =
NSSearchPathForDirectoriesInDomains(.DocumentDirectory,
.UserDomainMask, true)
let docsDir = dirPaths[0] as! String
databasePath = docsDir.stringByAppendingPathComponent(
"contacts.db")
if !filemgr.fileExistsAtPath(databasePath as String) {
let contactDB = FMDatabase(path: databasePath as String)
if contactDB == nil {
println("Error: \(contactDB.lastErrorMessage())")
}
if contactDB.open() {
let sql_stmt = "CREATE TABLE IF NOT EXISTS CONTACTS (ID INTEGER PRIMARY KEY AUTOINCREMENT, NAME TEXT, ADDRESS TEXT, PHONE TEXT)"
if !contactDB.executeStatements(sql_stmt) {
println("Error: \(contactDB.lastErrorMessage())")
}
contactDB.close()
} else {
println("Error: \(contactDB.lastErrorMessage())")
}
}
}
答案 0 :(得分:6)
Swift 2示例
一些假设:
libsqlite3.tbd
到项目中。ViewController.swift
在Xcode中打开ViewController.swift
文件,找到以下代码:
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
在评论下面添加以下代码,请记住在第4行和第4行中更改数据库的名称。 5。
// Start of Database copy from Bundle to App Document Directory
let fileManager = NSFileManager.defaultManager()
let documentsPath = NSURL(fileURLWithPath: NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0])
let destinationSqliteURL = documentsPath.URLByAppendingPathComponent("sqlite.db")
let sourceSqliteURL = NSBundle.mainBundle().URLForResource("sqlite", withExtension: "db")
if !fileManager.fileExistsAtPath(destinationSqliteURL.path!) {
// var error:NSError? = nil
do {
try fileManager.copyItemAtURL(sourceSqliteURL!, toURL: destinationSqliteURL)
print("Copied")
print(destinationSqliteURL.path)
} catch let error as NSError {
print("Unable to create database \(error.debugDescription)")
}
}
// Let's print the path to the database on your Mac
// so you can go look for the database in the Finder.
print(documentsPath)
let db = FMDatabase(path: destinationSqliteURL.path)
// Let's open the database
if !db.open() {
print("Unable to open database")
return
}
// Let's run some SQL from the FMDB documents to make sure
// everything is working as expected.
if !db.executeUpdate("create table test(x text, y text, z text)", withArgumentsInArray: nil) {
print("create table failed: \(db.lastErrorMessage())")
}
if !db.executeUpdate("insert into test (x, y, z) values (?, ?, ?)", withArgumentsInArray: ["a", "b", "c"]) {
print("insert 1 table failed: \(db.lastErrorMessage())")
}
if !db.executeUpdate("insert into test (x, y, z) values (?, ?, ?)", withArgumentsInArray: ["e", "f", "g"]) {
print("insert 2 table failed: \(db.lastErrorMessage())")
}
if let rs = db.executeQuery("select x, y, z from test", withArgumentsInArray: nil) {
while rs.next() {
let x = rs.stringForColumn("x")
let y = rs.stringForColumn("y")
let z = rs.stringForColumn("z")
print("x = \(x); y = \(y); z = \(z)")
}
} else {
print("select failed: \(db.lastErrorMessage())")
}
db.close()
您现在应该能够运行项目并复制数据库。
以前的答案以防有人
documentation for FMDB对此主题非常有帮助。使用那里的例子,下面的代码应该假设以下内容:
Swift 1.2
或更高版本。FMDB
正确添加到项目中。contacts.db
的SQLite数据库正确添加到项目中。在Build Phases
,然后Link Binary With Libraries
您添加了libsqlite3.dylib
。
//
// ViewController.swift
//
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var name: UITextField!
@IBOutlet weak var address: UITextField!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let filemgr = NSFileManager.defaultManager()
let documentsFolder = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0] as! String
let path = documentsFolder.stringByAppendingPathComponent("contacts.db")
let database = FMDatabase(path: path)
if !database.open() {
println("Unable to open database")
return
}
if !database.executeUpdate("create table test(x text, y text, z text)", withArgumentsInArray: nil) {
println("create table failed: \(database.lastErrorMessage())")
}
if !database.executeUpdate("insert into test (x, y, z) values (?, ?, ?)", withArgumentsInArray: ["a", "b", "c"]) {
println("insert 1 table failed: \(database.lastErrorMessage())")
}
if !database.executeUpdate("insert into test (x, y, z) values (?, ?, ?)", withArgumentsInArray: ["e", "f", "g"]) {
println("insert 2 table failed: \(database.lastErrorMessage())")
}
if let rs = database.executeQuery("select x, y, z from test", withArgumentsInArray: nil) {
while rs.next() {
let x = rs.stringForColumn("x")
let y = rs.stringForColumn("y")
let z = rs.stringForColumn("z")
println("x = \(x); y = \(y); z = \(z)")
}
} else {
println("select failed: \(database.lastErrorMessage())")
}
database.close()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
要进行测试,只需使用Build and Run
按钮,您就会看到在Xcode的控制台中运行模拟器和以下结果:
x = a; y = b; z = c
x = e; y = f; z = g
要显示控制台,请键入Shift + CMD + R或转到查看 - >调试区域 - >激活控制台
答案 1 :(得分:2)
首先,如果您使用FMDB,这不是与核心数据相关的。
其次,它实际上相当简单。
在Xcode中,您将SQL文件包含为在构建时加载到应用程序中的资源。
然后使用[[NSBundle mainBundle] URLForResource:@"file" withExtension:@"sqlite"]
找到该文件。从那里开始正常使用FMDB。
如果您想写到该文件,则需要将其复制到应用程序沙箱中的可写位置。
您正在查找捆绑包中的文件,但在尝试打开它之前,您不会将其从捆绑包中复制到文档目录中。如果文档目录中当前不存在,则需要将其从包中复制出来。
答案 2 :(得分:1)
如果您使用Core数据,则不应使用FMDB,仅对使用SQLite /数据库的应用程序使用包装器。如果您使用Swift,如果您不熟悉C ++和数据库,最好使用包装器。