我的应用程序中有 3 个文本字段,如下所示:
我想使用 Xcode swift 将此数据输入 MySQL 数据库
Best Answer-推荐答案 strong>
你想外部连接MySql Server还是你本地的my SQL数据库
这是使用这个库的方式
https://github.com/novi/mysql-swift
如何建立联系
let options = Options(host: "db.example.tokyo"...)
let pool = ConnectionPool(options: options)
let conn = try pool.getConnection()
conn.query("SELECT 1 + 2;")
conn.release()
如何从数据库中获取数据
let rows: [User] = try pool.execute { conn in
// The connection is held in this block
try conn.query("SELECT * FROM users;") // And also it returns result to outside execute block
}
更多请引用这里的库文档
Documentation
关于php - 我可以使用 Swift 2 将数据输入 MySQL 数据库吗,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/37025665/
|