php closecursor

Solutions on MaxInterview for php closecursor by the best coders in the world

showing results for - "php closecursor"
Giada
25 Oct 2017
1
2<?php
3/* Création d'un objet PDOStatement */
4$stmt $dbh->prepare('SELECT foo FROM bar');
5
6/* Création d'un second objet PDOStatement */
7$otherStmt $dbh->prepare('SELECT foobaz FROM foobar');
8
9/* Exécute la première requête */
10$stmt->execute();
11
12/* Récupération de la première ligne uniquement depuis le résultat */
13$stmt->fetch();
14
15/* L'appel suivant à closeCursor() peut être requis par quelques drivers */
16$stmt->closeCursor();
17
18/* Maintenant, nous pouvons exécuter la deuxième requête */
19$otherStmt->execute();
20?>
21
22