PHP

PHP jest obiektowym, skryptowym jezykiem programowania zaprojektowanym do tworzenia dynamicznych stron www.


Funkcje PHP

Oficjalna strona PHP

Dodatkowe aplikacje PHP

Dodatkowe modu³y PHP

Wortal PHP
koparka - Gry strzelanki - Domeny internetowe - Pozycjonowanie - Last minute Turcja - zaklady sportowe


db2_result

db2_result

(PECL)

db2_result --  Returns a single column from a row in the result set

Opis

mixed db2_result ( resource stmt, mixed column )

Use db2_result() to return the value of a specified column in the current row of a result set. You must call db2_fetch_row() before calling db2_result() to set the location of the result set pointer.

Parametry

stmt

A valid stmt resource.

column

Either an integer mapping to the 0-indexed field in the result set, or a string matching the name of the column.

Zwracane wartości

Returns the value of the requested field if the field exists in the result set. Returns NULL if the field does not exist, and issues a warning.

Przykłady

Przykład 1. A db2_result() example

The following example demonstrates how to iterate through a result set with db2_fetch_row() and retrieve columns from the result set with db2_result().

<?php
$sql
= 'SELECT name, breed FROM animals WHERE weight < ?';
$stmt = db2_prepare($conn, $sql);
db2_execute($stmt, array(10));
while (
db2_fetch_row($stmt)) {
    
$name = db2_result($stmt, 0);
    
$breed = db2_result($stmt, 'BREED');
    print
"$name $breed";
}
?>

Powyższy przykład wyświetli:

cat Pook
gold fish Bubbles
budgerigar Gizmo
goat Rickety Ride

Patrz także

db2_fetch_array()
db2_fetch_assoc()
db2_fetch_both()
db2_fetch_object()
db2_fetch_row()

Forum komputerowe Forum komputerowe Forum komputerowe - Faktorowanie Faktury Program - galeria zdjęć - Limo and Car services chicago cars 773-649-9630 - Limo and Car services chicago limos service 773-649-9630 - Oprogramowenie tworzace sklepy internetowe nowszej generacji. - najlepszy tani hosting stron www - odzyskiwanie danych Wrocław - (630) 839-9149 limo naperville ohare Naperville limo - Oferujemy znane skrypty sklepy internetowe warszawa bogate portfolio. - najlepszy polski hosting zdjęć w internecie - gotseoweb - zdjęcia artystyczne - pozycjonowanie bielsko-biała - kamery webcam internetowe

G:2,M:0,Y:26