検索

phrase: max: clip:
target: order:
Results of 81 - 90 of about 374 for database (0.028 sec.)
IBM データベースへの接続 4749
« IBM (PDO) Informix (PDO) » PHP Manual IBM (PDO) IBM データベースへの接続 PDO_IBM DSN (PECL PDO ... ような形式になります。 DRIVER={IBM DB2 ODBC DRIVER};DATABASE= database ;HOSTNAME= hostname ;PORT= port ;PROTOCO ... PWD= password ; 各パラメータは次の内容を表します。 database データベースの名前。 hostname データベースサーバー ... す。 $db = new PDO("ibm:DSN=DB2_9", "", ""); [DB2_9] Database=testdb Protocol=tcpip Hostname=11.22.33.444 Servic ... す。 $db = new PDO("ibm:DRIVER={IBM DB2 ODBC DRIVER};DATABASE=testdb;" . "HOSTNAME=11.22.33.444;PORT=56789;PROTO ...
https://man.plustar.jp/php/ref.pdo-ibm.connection.html - [similar]
Restores the RRD file from XML dump 4713
« rrd_lastupdate rrd_tune » PHP Manual RRD 関数 Restores the RRD file from XML dump rrd_restore ... ile XML filename with the dump of the original RRD database file. rrd_file Restored RRD database file name. op ... le , RRD , rrd , Restores , from , the , restore , database , string , 成功 ...
https://man.plustar.jp/php/function.rrd-restore.html - [similar]
Open a connection to a CUBRID Server 4687
« cubrid_connect_with_url cubrid_current_oid » PHP Manual CUBRID 関数 Open a connection to a CUB ... server by using your server address, port number, database name, user name, and password. If the user name an ... n $CUBRID/conf/cubrid_broker.conf). dbname Name of database. userid User name for the database. If not given, ... ion to CUBRID server cubrid_disconnect() - Close a database connection cubrid_close() - Close CUBRID connectio ... , cubrid , Open , Server , server , new , string , database , default ...
https://man.plustar.jp/php/function.cubrid-connect.html - [similar]
MySQL データベースを作成する 4661
« mysql_connect mysql_data_seek » PHP Manual MySQL 関数 MySQL データベースを作成する mysql_creat ... uery() PDO::query() 説明 mysql_create_db ( string $database_name , resource $link_identifier = NULL ): bool my ... バー上に新規のデータベースを作成します。 パラメータ database_name 作成されるデータベースの名前です。 link_ident ... 廃止予定です。代わりに mysql_query() を用いて CREATE DATABASE ステートメントを発行する方法が 推奨されます。 <?ph ... 続できません: ' . mysql_error ()); } $sql = 'CREATE DATABASE my_db' ; if ( mysql_query ( $sql , $link )) { echo ...
https://man.plustar.jp/php/function.mysql-create-db.html - [similar]
ラージオブジェクトを生成する 4634
« pg_lo_close pg_lo_export » PHP Manual PostgreSQL 関数 ラージオブジェクトを生成する pg_lo_creat ... 期待していました。 例 例1 pg_lo_create() の例 <?php $database = pg_connect ( "dbname=jacarta" ); pg_query ( $dat ... abase , "begin" ); $oid = pg_lo_create ( $database ); echo " $oid \n" ; $handle = pg_lo_open ( $datab ... ject data" ); pg_lo_close ( $handle ); pg_query ( $database , "commit" ); ?> 関連キーワード: ラージオブジェクト ...
https://man.plustar.jp/php/function.pg-lo-create.html - [similar]
ラージオブジェクトをオープンする 4634
« pg_lo_import pg_lo_read_all » PHP Manual PostgreSQL 関数 ラージオブジェクトをオープンする pg_l ... を期待していました。 例 例1 pg_lo_open() の例 <?php $database = pg_connect ( "dbname=jacarta" ); pg_query ( $dat ... abase , "begin" ); $oid = pg_lo_create ( $database ); echo " $oid \n" ; $handle = pg_lo_open ( $datab ... ject data" ); pg_lo_close ( $handle ); pg_query ( $database , "commit" ); ?> 参考 pg_lo_close() - ラージオブジ ...
https://man.plustar.jp/php/function.pg-lo-open.html - [similar]
ラージオブジェクトを切り詰める 4634
« pg_lo_tell pg_lo_unlink » PHP Manual PostgreSQL 関数 ラージオブジェクトを切り詰める pg_lo_trun ... g_lo_truncate() の例 <?php $doc_oid = 189762345 ; $database = pg_connect ( "dbname=jacarta" ); pg_query ( $dat ... abase , "begin" ); $handle = pg_lo_open ( $database , $doc_oid , "r" ); // Truncate to 0 pg_lo_truncat ... e ( $handle , 0 ); pg_query ( $database , "commit" ); echo $data ; ?> 参考 pg_lo_tell() - ...
https://man.plustar.jp/php/function.pg-lo-truncate.html - [similar]
Execute a database query 4634
« MongoDB\Driver\Manager::executeCommand MongoDB\Driver\Manager::executeReadCommand » PHP Manual ... MongoDB\Driver\Manager Execute a database query MongoDB\Driver\Manager::executeQuery (mongod ... ) MongoDB\Driver\Manager::executeQuery — Execute a database query 説明 final public MongoDB\Driver\Manager::ex ... ータ namespace ( string ) 完全修飾形式の名前空間 ( "databaseName.collectionName" )。 query ( MongoDB\Driver\Que ... MongoDB\Driver\Server::executeQuery() - Execute a database query on this server 関連キーワード: Driver , quer ...
https://man.plustar.jp/php/mongodb-driver-manager.executequery.html - [similar]
Oracle 関数 (PDO_OCI) 4634
« PDO_SQLSRV DSN PDO_OCI DSN » PHP Manual PDO ドライバ Oracle 関数 (PDO_OCI) Oracle 関数 (PDO_OC ... int ) Provides a way to specify the action on the database session. これが使えるようになった PHP のバージョン ... ) Provides a way to specify the client info on the database session. これが使えるようになった PHP のバージョン ... ides a way to specify the client identifier on the database session. これが使えるようになった PHP のバージョン ... int ) Provides a way to specify the module on the database session. これが使えるようになった PHP のバージョン ...
https://man.plustar.jp/php/ref.pdo-oci.html - [similar]
ラージオブジェクトを読み込む 4573
« pg_lo_read_all pg_lo_seek » PHP Manual PostgreSQL 関数 ラージオブジェクトを読み込む pg_lo_read ... 例1 pg_lo_read() の例 <?php $doc_oid = 189762345 ; $database = pg_connect ( "dbname=jacarta" ); pg_query ( $dat ... abase , "begin" ); $handle = pg_lo_open ( $database , $doc_oid , "r" ); $data = pg_lo_read ( $handle , ... 50000 ); pg_query ( $database , "commit" ); echo $data ; ?> 参考 pg_lo_read_all( ...
https://man.plustar.jp/php/function.pg-lo-read.html - [similar]