msql_dbname

(PHP 4, PHP 5, PHP 7) Alias of msql_result() This function is an alias of: msql_result().

msql_db_query

(PHP 4, PHP 5, PHP 7) Send mSQL query resource msql_db_query ( string $database, string $query [, resource $link_identifier ] ) msql_db_query() selects a database and executes a query on it. Parameters: database The name of the mSQL database. query The SQL query. link_identifier The mSQL connection. If

msql_data_seek

(PHP 4, PHP 5, PHP 7) Move internal row pointer bool msql_data_seek ( resource $result, int $row_number ) msql_data_seek() moves the internal row pointer of the mSQL result associated with the specified query identifier to point to the specified row number. The next call to msql_fetch_row() would return that row. Parameters: result The result resource that is being evaluat

msql_createdb

(PHP 4, PHP 5, PHP 7) Alias of msql_create_db() This function is an alias of: msql_create_db().

msql_create_db

(PHP 4, PHP 5, PHP 7) Create mSQL database bool msql_create_db ( string $database_name [, resource $link_identifier ] ) msql_create_db() attempts to create a new database on the mSQL server. Parameters: database_name The name of the mSQL database. link_identifier The mSQL connection. If not specified, the last link opened by msql_connect

msql_connect

(PHP 4, PHP 5, PHP 7) Open mSQL connection resource msql_connect ([ string $hostname ] ) msql_connect() establishes a connection to a mSQL server. If a second call is made to msql_connect() with the same arguments, no new link will be established, but instead, the link identifier of the already opened link will be returned. The link to the server will be closed as soon as the execution of the script ends, unless it's clo

msql_close

(PHP 4, PHP 5, PHP 7) Close mSQL connection bool msql_close ([ resource $link_identifier ] ) msql_close() closes the non-persistent connection to the mSQL server that's associated with the specified link identifier. Using msql_close() isn't usually necessary, as non-persistent open links are automatically closed at the end of the script's execution. See also freeing resources. Parameters:

msql_affected_rows

(PHP 4, PHP 5, PHP 7) Returns number of affected rows int msql_affected_rows ( resource $result ) Returns number of affected rows by the last SELECT, UPDATE or DELETE query associated with result. Parameters: result The result resource that is being evaluated. This result comes from a call to msql_query(). Returns: Returns the number of affected ro

bson_encode

(PECL mongo >=1.0.1) Serializes a PHP variable into a BSON string string bson_encode ( mixed $anything ) This function is very beta and entirely useless for 99% of users. It is only useful if you're doing something weird, such as writing your own driver on top of the PHP driver. Parameters: anything The variable to be serialized. Returns: Retu

bson_decode

(PECL mongo >=1.0.1) Deserializes a BSON object into a PHP array array bson_decode ( string $bson ) This function is very beta and entirely useless for 99% of users. It is only useful if you're doing something weird, such as writing your own driver on top of the PHP driver. Parameters: bson The BSON to be deserialized. Returns: Returns the des