कथन में तैयार किए गए कथनों का क्या अर्थ है?
दस्तावेज़ीकरण से:
यह सुविधा उन आदेशों की अनुमति देती है जिनका उपयोग हर बार निष्पादित होने के बजाय केवल एक बार पार्स और नियोजित करने के लिए बार-बार किया जाएगा।
देखें pg_prepare
ऊपर लिंक किए गए पेज से उदाहरण:
<?php
// Connect to a database named "mary"
$dbconn = pg_connect("dbname=mary");
// Prepare a query for execution
$result = pg_prepare($dbconn, "my_query", 'SELECT * FROM shops WHERE name = $1');
// Execute the prepared query. Note that it is not necessary to escape
// the string "Joe's Widgets" in any way
$result = pg_execute($dbconn, "my_query", array("Joe's Widgets"));
// Execute the same prepared query, this time with a different parameter
$result = pg_execute($dbconn, "my_query", array("Clothes Clothes Clothes"));
?>
तैयार विवरण के लिए MySQL प्रलेखन निम्नलिखित प्रश्नों का अच्छी तरह से उत्तर देता है:
- तैयार बयानों का उपयोग क्यों करें?
- आपको तैयार बयानों का उपयोग कब करना चाहिए?