|
|
PHP (angielski akronim rekurencyjny, którego rozwinięcie to PHP Hypertext Preprocessor), pierwotnie nazwany Personal
Home Page - skryptowy język programowania, służący przede wszystkim do tworzenia dynamicznych stron WWW i wykonywany w
tym przypadku po stronie serwera, z możliwością zagnieżdżania w HTML (bądź XHTML). PHP jest podobny w założeniach do
dużo starszego mechanizmu SSI (Server Side Includes), jednak jest w stosunku do SSI nieporównanie bardziej rozbudowany.
Udostępniany jest na zasadach licencji open-source. Jego składnia bazuje na językach C, Java i Perl.
SQL (ang. Structured Query Language) to strukturalny język zapytań używany do tworzenia, modyfikowania baz danych oraz
do umieszczania i pobierania danych z baz danych.
Język SQL jest językiem deklaratywnym. Decyzję o sposobie przechowywania i pobrania danych pozostawia się systemowi
zarządzania bazą danych DBMS.
Jest to język programowania opracowany w latach siedemdziesiątych w firmie IBM. Stał się on standardem w komunikacji z
serwerami relacyjnych baz danych. Wiele współczesnych systemów relacyjnych baz danych używa do komunikacji z
użytkownikiem SQL, dlatego mówi się, że korzystanie z relacyjnych baz danych, to korzystanie z SQL-a.
Apache jest otwartym serwerem HTTP dostępnym dla wielu systemów operacyjnych (m.in. UNIX, GNU/Linux, BSD,
Microsoft Windows). Po angielsku słowo Apache wymawia się epaczi, co brzmi tak samo jak a patchy (server), co było
określeniem tego serwera we wczesnym stadium jego rozwoju w 1995 roku, kiedy był on głównie zbiorem poprawek (patch)
nałożonych na serwer HTTP o nazwie NCSA.
Apache jest najszerzej stosowanym serwerem HTTP w Internecie. W maju 2003 jego udział wśród serwerów wynosił 62%. W
połączeniu z interpreterem języka skryptowego PHP i bazą danych MySQL, Apache stanowi jedno z najczęściej spotykanych
środowisk w firmach oferujących miejsce na serwerach sieciowych.
|
db2_fetch_object
(PECL) db2_fetch_object -- Returns an object with
properties representing columns in the fetched row
Opisobject db2_fetch_object
( resource stmt [, int row_number] )
Returns an object in which each property represents a column
returned in the row fetched from a result set.
Parametry
- stmt
-
A valid stmt resource
containing a result set.
- row_number
-
Requests a specific 1-indexed row from the result set.
Passing this parameter results in a PHP warning if the
result set uses a forward-only cursor.
Zwracane wartości
Returns an object representing a single row in the result
set. The properties of the object map to the names of the
columns in the result set.
The IBM DB2, Cloudscape, and Apache Derby database servers
typically fold column names to upper-case, so the object
properties will reflect that case.
If your SELECT statement calls a scalar function to modify
the value of a column, the database servers return the column
number as the name of the column in the result set. If you
prefer a more descriptive column name and object property, you
can use the AS clause to assign a name to the column in the
result set.
Returns FALSE if no row was
retrieved.
Przykłady
Przykład 1. A db2_fetch_object() example
The following example issues a SELECT statement with
a scalar function, RTRIM, that removes whitespace from
the end of the column. Rather than creating an object
with the properties "BREED" and "2", we use the AS
clause in the SELECT statement to assign the name
"name" to the modified column. The database server
folds the column names to upper-case, resulting in an
object with the properties "BREED" and "NAME".
<?php
$conn = db2_connect($database, $user, $password);
$sql = "SELECT breed, RTRIM(name) AS name
FROM animals
WHERE id = ?";
if ($conn) {
$stmt = db2_prepare($conn, $sql);
db2_execute($stmt, array(0));
while ($pet = db2_fetch_object($stmt)) {
echo "Come here, {$pet->NAME}, my little {$pet->BREED}!";
}
db2_close($conn);
} ?> |
Powyższy przykład wyświetli:
Come here, Pook, my little cat!
|
|
|