|
użytkowników online: 44
|
OPINIE UŻYTKOWNIKÓW
|
Nie jestem webmasterem, ale i na mnie zrobiła wrażenie szybkość reakcji Darka na mój problem. Jego kompetencja i przede wszystkim zupełnie niemodna w dzisiejszych skomercjalizowanych czasach - zwykła ludzka życzliwość dla innego człowieka. Tacy ludzie to dziś gatunek niemal wymarły...
Leszek
Wojskowy Instytut Medyczny
|
|
PODRĘCZNIK PHP 5.x, 4.x, 3.x - częściowo spolszczony / źródło: www.php.net
[Spis]
[A]
[B]
[C]
[D]
[E]
[F]
[G]
[H]
[I]
[J]
[K]
[L]
[M]
[N]
[O]
[P]
[Q]
[R]
[S]
[T]
[U]
[V]
[X]
[W]
[Z]
LXXVI. mSQL Functions
These functions allow you to access mSQL database servers. More
information about mSQL can be found at
http://www.hughes.com.au/.
In order to have these functions available, you must compile PHP with
msql support by using the
--with-msql[=DIR] option. DIR is the mSQL
base install directory, defaults to /usr/local/msql3.
Note to Win32 Users:
In order to enable this module on a Windows environment, you must copy
msql.dll from the DLL folder of the PHP/Win32
binary package to the SYSTEM32 folder of your windows machine.
(Ex: C:\WINNT\SYSTEM32 or
C:\WINDOWS\SYSTEM32)
Na działanie tych funcji wpływają ustawienia zawarte w pliku
php.ini.
Tabela 1. mSQL configuration options | Name | Default | Changeable | Changelog |
|---|
| msql.allow_persistent | "On" | PHP_INI_SYSTEM | | | msql.max_persistent | "-1" | PHP_INI_SYSTEM | | | msql.max_links | "-1" | PHP_INI_SYSTEM | |
Szczegóły i definicje dotyczące stałych
PHP_INI_* znajdują się w rozdziale Dodatek H.
Oto krótkie wyjaśnienie dyrektyw
konfiguracji.
- msql.allow_persistent
boolean
Whether to allow persistent mSQL connections.
- msql.max_persistent
integer
The maximum number of persistent mSQL connections per process.
- msql.max_links
integer
The maximum number of mSQL connections per process, including
persistent connections.
There are two resource types used in the mSQL module. The first one
is the link identifier for a database connection, the second a resource
which holds the result of a query.
Poniższe stałe są zdefiniowane w tym rozszerzeniu i stają się dostępne, gdy
rozszerzenie jest dokompilowane do PHP, lub załadowane dynamicznie przy starcie.
This simple example shows how to connect, execute a query, print
resulting rows and disconnect from a mSQL database.
Przykład 1. mSQL usage example |
<?php
$link = msql_connect('localhost', 'username', 'password')
or die('Could not connect : ' . msql_error($link));
msql_select_db('database', $link)
or die('Could not select database');
$query = 'SELECT * FROM my_table';
$result = msql_query($query, $link) or die('Query failed : ' . msql_error($link));
echo "<table>\n";
while ($row = msql_fetch_array($result, MSQL_ASSOC)) {
echo "\t<tr>\n";
foreach ($row as $col_value) {
echo "\t\t<td>$col_value</td>\n";
}
echo "\t</tr>\n";
}
echo "</table>\n";
msql_free_result($result);
msql_close($link);
?>
|
|
User Contributed Notesacroyear at io dot com
15-May-2000 11:11
To those porting code from w3-msql/lite to php, a few functions are different or missing (aside from the fact that the order of arguments is reversed and the other signatures are different...not good design work, imho, or was it built for msql 1.x? At any rate, conformity with the C and Lite API should have been maintained.).
The lite/C function msqlStoreResult() is automatically done in msql_query() and msql().
msql_fetch_field() doesn't give you the field length value (unlike msqlFetchField()). You have to call msql_fieldlen() to get that.
msqlEncode() is missing. The functionality (which is needed for pretty much ALL SQL based rdbms's) is in addSlashes() in the String library.
|