php - 我可以使用 Swift 2 将数据输入 MySQL 数据库吗
<p><p>我的应用程序中有 3 个文本字段,如下所示:</p>
<ul>
<li>电子邮件</li>
<li>用户名</li>
<li>密码</li>
</ul>
<p>我想使用 <code>Xcode swift</code></p> 将此数据输入 <code>MySQL</code> 数据库</p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>你想外部连接MySql Server还是你本地的my SQL数据库</p>
<p>这是使用这个库的方式
<a href="https://github.com/novi/mysql-swift" rel="noreferrer noopener nofollow">https://github.com/novi/mysql-swift</a> </p>
<p><strong>如何建立联系</strong></p>
<pre><code> let options = Options(host: "db.example.tokyo"...)
let pool = ConnectionPool(options: options)
let conn = try pool.getConnection()
conn.query("SELECT 1 + 2;")
conn.release()
</code></pre>
<p><strong>如何从数据库中获取数据</strong></p>
<pre><code> let rows: = 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
}
</code></pre>
<p>更多请引用这里的库文档</p>
<p> <a href="https://github.com/novi/mysql-swift/blob/master/README.md" rel="noreferrer noopener nofollow">Documentation</a> </p></p>
<p style="font-size: 20px;">关于php - 我可以使用 Swift 2 将数据输入 MySQL 数据库吗,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/37025665/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/37025665/
</a>
</p>
页:
[1]