我想将我的 mySQL 数据库连接到我的 xcode 项目 [已关闭]

问题描述 投票:0回答:1

我正在尝试将我的 mysql 数据库连接到我的 xcode 项目,以获得一个简单的登录视图,用户可以在其中输入用户名和密码。我已经设置了数据库,但我需要使用 JSON 或?

 <?php

 // Create connection
   $con=mysqli_connect("localhost","username","password","dbname");



 // Check connection
 if (mysqli_connect_errno())
 {
 echo "Failed to connect to MySQL: " . mysqli_connect_error();
 }

 // This SQL statement selects ALL from the table 'Locations'
 $sql = "SELECT * FROM Locations";

 // Check if there are results
 if ($result = mysqli_query($con, $sql))
 {
 // If so, then create a results array and a temporary one
 // to hold the data
 $resultArray = array();
 $tempArray = array();

 // Loop through each row in the result set
 while($row = $result->fetch_object())
 {
    // Add each row into our results array
    $tempArray = $row;
    array_push($resultArray, $tempArray);
 }

 // Finally, encode the array to JSON and output the results
 echo json_encode($resultArray);
}

 // Close connections
 mysqli_close($con);
 ?>
php ios mysql iphone xcode
1个回答
3
投票

这是一篇关于此的好文章:

[1]:http://codewithchris.com/iphone-app-connect-to-mysql-database/#parsejson Xcode JSON

我没有花太多时间使用 xcode,但据我所知,没有本地 API/框架可以用它连接到 MySQL 数据库(以及大多数其他同类框架)。所以是的 - 您需要设置一个带有数据库的网站/服务器,该数据库具有生成 JSON 代码的网页。然后让 xcode 向服务器/网页发送 Web 请求,将 JSON 代码存储在变量中,然后使用 xcode 必须使用/操作 JSON 数据的任何方法。您需要确保 Xcode 和 Web 服务器不会阻止彼此以适当的安全权限传递数据。

您也可以将数据以任何您想要的格式传递到您的 xcode 应用程序 - JSON、CSV 甚至 XML。无论 xcode 具有什么功能,您都应该坚持使用。实际上,您甚至可以创建自己的数据格式...这是您的应用程序,可以用它做您想做的事情,无论是在 xcode 中最容易使用的内容。

© www.soinside.com 2019 - 2024. All rights reserved.