Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

JSON स्ट्रिंग को MySQL डेटाबेस में सहेजा जा रहा है

हम json_decode का उपयोग करेंगे json_decode प्रलेखन

साथ ही बचना भी सुनिश्चित करें! मैं इसे नीचे इस तरह से करूंगा...

/* create a connection */
$mysqli = new mysqli("localhost", "root", null, "yourDatabase");

/* check connection */
if (mysqli_connect_errno()) {
    printf("Connect failed: %s\n", mysqli_connect_error());
    exit();
}

/* let's say we're grabbing this from an HTTP GET or HTTP POST variable called jsonGiven... */
$jsonString = $_REQUEST['jsonGiven'];
/* but for the sake of an example let's just set the string here */
$jsonString = '{"name":"jack","school":"colorado state","city":"NJ","id":null}
';

/* use json_decode to create an array from json */
$jsonArray = json_decode($jsonString, true);

/* create a prepared statement */
if ($stmt = $mysqli->prepare('INSERT INTO test131 (name, school, city, id) VALUES (?,?,?,?)')) {

    /* bind parameters for markers */
    $stmt->bind_param("ssss", $jsonArray['name'], $jsonArray['school'], $jsonArray['city'], $jsonArray['id']);

    /* execute query */
    $stmt->execute();

    /* close statement */
    $stmt->close();
}

/* close connection */
$mysqli->close();

आशा है कि यह मदद करेगा!



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. क्या WHERE क्लॉज में फ़ील्ड का क्रम MySQL में प्रदर्शन को प्रभावित करता है?

  2. पायथन MySQLdb प्लेसहोल्डर सिंटैक्स

  3. MySQL:DATETIME को प्राथमिक कुंजी के रूप में उपयोग करना

  4. Django MySQL पूर्ण पाठ खोज

  5. राइट जॉइन बनाम लेफ्ट जॉइन