1
0
mirror of https://github.com/php/doc-ja.git synced 2026-03-24 07:02:08 +01:00
Files
archived-doc-ja/reference/oci8/datatypes.xml
TAKAGI Masahiro 0c0aad572a Sync with en
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@332825 c90b9560-bf6c-de11-be94-00142212c4b1
2014-02-11 01:44:42 +00:00

156 lines
5.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 44e38e287d29857e5cd5da1f045695e6838170b3 Maintainer: takagi Status: ready -->
<!-- CREDITS: hirokawa,shimooka -->
<chapter xml:id="oci8.datatypes" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>ドライバでサポートされるデータ型</title>
<table>
<title><function>oci_bind_by_name</function>
関数を使用してパラメータをバインドする場合、
ドライバは次の型をサポートします</title>
<tgroup cols="2">
<thead>
<row>
<entry></entry>
<entry>マッピング</entry>
</row>
</thead>
<tbody>
<row>
<entry><constant>SQLT_NTY</constant></entry>
<entry><function>oci_new_collection</function>
によって生成されたような
PHP のコレクションオブジェクトからネイティブのコレクション型に
マップします</entry>
</row>
<row>
<entry><constant>SQLT_BFILEE</constant></entry>
<entry><function>oci_new_descriptor</function>
によって生成されたような
PHP のディスクリプタオブジェクトからネイティブのディスクリプタ型に
マップします</entry>
</row>
<row>
<entry><constant>SQLT_CFILEE</constant></entry>
<entry><function>oci_new_descriptor</function>
によって生成されたような
PHP のディスクリプタオブジェクトからネイティブのディスクリプタ型に
マップします</entry>
</row>
<row>
<entry><constant>SQLT_CLOB</constant></entry>
<entry><function>oci_new_descriptor</function>
によって生成されたような
PHP のディスクリプタオブジェクトからネイティブのディスクリプタ型に
マップします</entry>
</row>
<row>
<entry><constant>SQLT_BLOB</constant></entry>
<entry><function>oci_new_descriptor</function>
によって生成されたような
PHP のディスクリプタオブジェクトからネイティブのディスクリプタ型に
マップします</entry>
</row>
<row>
<entry><constant>SQLT_RDD</constant></entry>
<entry><function>oci_new_descriptor</function>
によって生成されたような
PHP のディスクリプタオブジェクトからネイティブのディスクリプタ型に
マップします</entry>
</row>
<row>
<entry><constant>SQLT_NUM</constant></entry>
<entry>PHP パラメータを 'C' の long 型に変換し、
その値をバインドします</entry>
</row>
<row>
<entry><constant>SQLT_RSET</constant></entry>
<entry><function>oci_parse</function> によって生成されたもしくは他の
OCI クエリから処理されたような
PHP のステートメントハンドルからネイティブのステートメントハンドルに
マップします</entry>
</row>
<row>
<entry><constant>SQLT_BOL</constant></entry>
<entry>PHP パラメータを PL/SQL の BOOLEAN にバインドします</entry>
</row>
<row>
<entry><constant>SQLT_CHR</constant> とその他の型</entry>
<entry>PHP パラメータを文字列型に変換し、その文字列をバインドします
</entry>
</row>
</tbody>
</tgroup>
</table>
<table>
<title>以下の型は結果セットからカラムを処理する際にサポートされます
</title>
<tgroup cols="2">
<thead>
<row>
<entry></entry>
<entry>マッピング</entry>
</row>
</thead>
<tbody>
<row>
<entry><constant>SQLT_RSET</constant></entry>
<entry>カーソルを表す OCI ステートメントリソースを生成します</entry>
</row>
<row>
<entry><constant>SQLT_RDD</constant></entry>
<entry>ROWID オブジェクトを生成します</entry>
</row>
<row>
<entry><constant>SQLT_BLOB</constant></entry>
<entry>LOB オブジェクトを生成します</entry>
</row>
<row>
<entry><constant>SQLT_CLOB</constant></entry>
<entry>LOB オブジェクトを生成します</entry>
</row>
<row>
<entry><constant>SQLT_BFILE</constant></entry>
<entry>LOB オブジェクトを生成します</entry>
</row>
<row>
<entry><constant>SQLT_LNG</constant></entry>
<entry>SQLT_CHR としてバインドし、文字列として返します</entry>
</row>
<row>
<entry><constant>SQLT_LBI</constant></entry>
<entry><constant>SQLT_BIN</constant> としてバインドし、文字列として返します</entry>
</row>
<row>
<entry>その他の型</entry>
<entry><constant>SQLT_CHR</constant> としてバインドし、文字列として返します</entry>
</row>
</tbody>
</tgroup>
</table>
</chapter>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->