Поиск по:old.master.cmc.msu.ru -
Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 941 - 960 из 3519.
Упорядочить по:
URL
|
дате изменения
941. sesam_settransaction
... Next . unknown) sesam_settransaction -- Set SESAM transaction parameters . bool sesam_settransaction ( int isolation_level, int read_only) . Returns: TRUE if the values are valid, and the settransaction() operation was successful, FALSE otherwise. sesam_settransaction() overrides the default values for the "isolation level" and "read-only" transaction parameters (which are set in the SESAM configuration file), in order to optimize subsequent queries and guarantee database consistency. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.sesam-settransaction.html -- 6.8 Кб -- 03.02.2002
Похожие документы
Похожие документы
942. sesam_connect
... unknown) sesam_connect -- Open SESAM database connection . bool sesam_connect ( string catalog, string schema, string user) . Returns TRUE if a connection to the SESAM database was made, or FALSE on error. sesam_connect() establishes a connection to an SESAM database handler task. ... When creating a database, the "catalog" name is specified in the SESAM configuration directive //ADD-SQL-DATABASE-CATALOG-LIST ENTRY-1 = *CATALOG(CATALOG-NAME = catalogname,.. ... Connect to a SESAM database . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.sesam-connect.html -- 5.2 Кб -- 03.02.2002
Похожие документы
Похожие документы
943. sesam_disconnect
... Prev . Next . unknown) sesam_disconnect -- Detach from SESAM connection . ... sesam_disconnect() closes the logical link to a SESAM database (without actually disconnecting and unloading the driver). Note that this isn't usually necessary, as the open connection is automatically closed at the end of the script's execution. ... See also: sesam_connect() . ... if (sesam_connect ("mycatalog", "myschema", "otto")) { ... some queries and stuff ... sesam_disconnect(); } . ... sesam_connect . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.sesam-disconnect.html -- 4.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
944. ftok
. PHP Manual . Prev . Next . (PHP 4 CVS only) ftok -- Convert a pathname and a project identifier to a System V IPC key . int ftok ( string pathname, string proj) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . shm_remove_var . Up . SESAM database functions
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.ftok.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
945. Semaphore and Shared Memory Functions
... This module provides semaphore functions using System V semaphores. Semaphores may be used to provide exclusive access to resources on the current machine, or to limit the number of processes that may simultaneously use a resource. This module provides also shared memory functions using System V shared memory. ... max size of shared memory, normally 131072 bytes . ... minimum size of shared memory, normally 1 byte . ... max amount of shared memory segments on a system, normally 100 . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/ref.sem.html -- 6.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
946. shm_remove_var
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) shm_remove_var -- Removes a variable from shared memory . int shm_remove_var ( int id, int variable_key) . Removes a variable with a given variable_key and frees the occupied memory. Note: This function does not work on Windows systems. Prev . Home . Next . shm_get_var . Up . ftok
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.shm-remove-var.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
947. shm_get_var
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) shm_get_var -- Returns a variable from shared memory . mixed shm_get_var ( int id, int variable_key) . shm_get_var() returns the variable with a given variable_key . The variable is still present in the shared memory. Note: This function does not work on Windows systems. Prev . Home . Next . shm_put_var . Up . shm_remove_var
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.shm-get-var.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
948. shm_put_var
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) shm_put_var -- Inserts or updates a variable in shared memory . int shm_put_var ( int shm_identifier, int variable_key, mixed variable) . Inserts or updates a variable with a given variable_key . All variable-types are supported. Note: This function does not work on Windows systems. Prev . Home . Next . shm_remove . Up . shm_get_var
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.shm-put-var.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
949. shm_detach
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) shm_detach -- Disconnects from shared memory segment . int shm_detach ( int shm_identifier) . shm_detach() disconnects from the shared memory given by the shm_identifier created by shm_attach() . Remember, that shared memory still exist in the Unix system and the data is still present. Prev . Home . Next . shm_attach . Up . shm_remove
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.shm-detach.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
950. shm_remove
. PHP Manual . Prev . Next . (3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) shm_remove -- Removes shared memory from Unix systems . int shm_remove ( int shm_identifier) . Removes shared memory from Unix systems. All data will be destroyed. Note: This function does not work on Windows systems. Prev . Home . Next . shm_detach . Up . shm_put_var
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.shm-remove.html -- 3.4 Кб -- 03.02.2002
Похожие документы
Похожие документы
951. shm_attach
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) shm_attach -- Creates or open a shared memory segment . int shm_attach ( int key [, int memsize [, int perm]]) . shm_attach() returns an id that that can be used to access the System V shared memory with the given key, the first call creates the shared memory segment with mem_size (default: sysvshm.init_mem in the configuration file , otherwise 10000 bytes) and the optional perm-bits (default: 0666). ... Memsize and perm will be ignored. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.shm-attach.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
952. sem_remove
PHP Manual . Prev . Next . PHP 4 >= 4.1.0) sem_remove -- Remove a semaphore . bool sem_remove ( int sem_identifier) . Returns: TRUE on success, FALSE on error. sem_remove() removes the semaphore sem_identifier if it has been created by sem_get() , otherwise generates a warning. After removing the semaphore, it is no more accessible. See also: sem_get() , sem_release() and sem_acquire() . ... It was added on PHP 4.1.0. ... sem_release . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.sem-remove.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы
953. sem_acquire
... 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) sem_acquire -- Acquire a semaphore . bool sem_acquire ( int sem_identifier) . ... A process attempting to acquire a semaphore which it has already acquired will block forever if acquiring the semaphore would cause its max_acquire value to be exceeded. After processing a request, any semaphores acquired by the process but not explicitly released will be released automatically and a warning will be generated. See also: sem_get() and sem_release() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.sem-acquire.html -- 3.9 Кб -- 03.02.2002
Похожие документы
Похожие документы
954. sem_release
PHP Manual . Prev . Next . 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) sem_release -- Release a semaphore . bool sem_release ( int sem_identifier) . Returns: TRUE on success, FALSE on error. sem_release() releases the semaphore if it is currently acquired by the calling process, otherwise a warning is generated. After releasing the semaphore, sem_acquire() may be called to re-acquire it. See also: sem_get() and sem_acquire() . ... sem_acquire . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.sem-release.html -- 4.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
955. sem_get
... Next . 3.0.6 - 3.0.18 only, PHP 4 >= 4.0.0) sem_get -- Get a semaphore id . int sem_get ( int key [, int max_acquire [, int perm]]) . Returns: A positive semaphore identifier on success, or FALSE on error. sem_get() returns an id that can be used to access the System V semaphore with the given key. ... A second call to sem_get() for the same key will return a different semaphore identifier, but both identifiers access the same underlying semaphore. ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.sem-get.html -- 4.3 Кб -- 03.02.2002
Похожие документы
Похожие документы
956. Satellite CORBA client extension
... Next . ... Be warned and use this extension at your own risk. The Satellite extension is used for accessing CORBA objects. You will need to set the idl_directory= entry in php.ini to a path where you store all IDL files you use. ... satellite_caught_exception -- See if an exception was caught from the previous function . satellite_exception_id -- Get the repository id for the latest exception. satellite_exception_value -- Get the exception struct for the latest exception . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/ref.satellite.html -- 5.0 Кб -- 03.02.2002
Похожие документы
Похожие документы
957. satellite_get_repository_id
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.3) satellite_get_repository_id -- NOT IMPLEMENTED . int satellite_get_repository_id ( object obj) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . satellite_load_idl . Up . Semaphore and Shared Memory Functions
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.satellite-get-repository-id.html -- 3.5 Кб -- 03.02.2002
Похожие документы
Похожие документы
958. satellite_load_idl
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.3) satellite_load_idl -- Instruct the type manager to load an IDL file if not already loaded . bool satellite_load_idl ( string file) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . satellite_object_to_string . Up . satellite_get_repository_id
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.satellite-load-idl.html -- 3.7 Кб -- 03.02.2002
Похожие документы
Похожие документы
959. satellite_object_to_string
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) satellite_object_to_string -- Convert an object to its string representation . string satellite_object_to_string ( object obj) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . satellite_exception_value . Up . satellite_load_idl
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.satellite-object-to-string.html -- 3.6 Кб -- 03.02.2002
Похожие документы
Похожие документы
960. satellite_exception_id
PHP Manual . Prev . Next . PHP 4 >= 4.0.3) satellite_exception_id -- Get the repository id for the latest exception. string satellite_exception_id ( (void);) . ... This function is EXPERIMENTAL . The behaviour of this function, the name of this function, and anything else documented about this function may change in a future release of PHP without notice. ... Return a repository id string. E.g. "IDL:MyException:1.0".) For example usage see satellite_caught_exception() . ...
[
Сохраненная копия
]
Ссылки http://old.master.cmc.msu.ru/php/function.satellite-exception-id.html -- 4.1 Кб -- 03.02.2002
Похожие документы
Похожие документы