mirror of
https://github.com/php/doc-ja.git
synced 2026-03-25 15:42:08 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/ja/trunk@322657 c90b9560-bf6c-de11-be94-00142212c4b1
173 lines
5.9 KiB
XML
173 lines
5.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 0d604bbc9d3b741d53e7fac26f5b24c306751e9a Maintainer: hirokawa Status: ready -->
|
|
<!-- CREDITS: shimooka -->
|
|
<refentry xml:id="function.sqlite-unbuffered-query" xmlns="http://docbook.org/ns/docbook">
|
|
<refnamediv>
|
|
<refname>sqlite_unbuffered_query</refname>
|
|
<refname>SQLiteDatabase::unbufferedQuery</refname>
|
|
<refpurpose>
|
|
事前取得していないクエリを実行し、全てのデータをバッファリングする
|
|
</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<type>resource</type><methodname>sqlite_unbuffered_query</methodname>
|
|
<methodparam><type>resource</type><parameter>dbhandle</parameter></methodparam>
|
|
<methodparam><type>string</type><parameter>query</parameter></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>result_type</parameter><initializer>SQLITE_BOTH</initializer></methodparam>
|
|
<methodparam choice="opt"><type>string</type><parameter role="reference">error_msg</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<methodsynopsis>
|
|
<type>resource</type><methodname>sqlite_unbuffered_query</methodname>
|
|
<methodparam><type>string</type><parameter>query</parameter></methodparam>
|
|
<methodparam><type>resource</type><parameter>dbhandle</parameter></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>result_type</parameter><initializer>SQLITE_BOTH</initializer></methodparam>
|
|
<methodparam choice="opt"><type>string</type><parameter role="reference">error_msg</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>&style.oop; (メソッド):</para>
|
|
<methodsynopsis>
|
|
<type>SQLiteUnbuffered</type><methodname>SQLiteDatabase::unbufferedQuery</methodname>
|
|
<methodparam><type>string</type><parameter>query</parameter></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>result_type</parameter><initializer>SQLITE_BOTH</initializer></methodparam>
|
|
<methodparam choice="opt"><type>string</type><parameter role="reference">error_msg</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>sqlite_unbuffered_query</function> は
|
|
<function>sqlite_query</function> と同じですが、
|
|
連続的に前方のみにアクセス可能な結果セットが返され、
|
|
各レコードを1件ずつ読み込むことだけしかできないところが異なります。
|
|
</para>
|
|
<para>
|
|
この関数は、一度に1件ずつレコードを処理するだけでよく、ランダムに
|
|
データをアクセスする必要がない、HTMLテーブルのようなものを生成する
|
|
のに適しています。
|
|
</para>
|
|
<note>
|
|
<para>
|
|
<function>sqlite_seek</function>,
|
|
<function>sqlite_rewind</function>, <function>sqlite_next</function>,
|
|
<function>sqlite_current</function> および
|
|
<function>sqlite_num_rows</function> のような関数は、この関数から返
|
|
された結果ハンドルでは動作しません。
|
|
</para>
|
|
</note>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<para>
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>dbhandle</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
SQLite データベースリソース。手続きに従って、
|
|
<function>sqlite_open</function> から返されます。
|
|
このパラメータは、
|
|
オブジェクト指向言語型メソッドを使用する場合は不要です。
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>query</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
実行するクエリ
|
|
</para>
|
|
<para>
|
|
クエリ内のデータは <link
|
|
linkend="function.sqlite-escape-string">適切にエスケープ</link>
|
|
する必要があります。
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>result_type</parameter></term>
|
|
<listitem>
|
|
&sqlite.result-type;
|
|
</listitem>
|
|
</varlistentry>
|
|
<varlistentry>
|
|
<term><parameter>error_msg</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
もしエラーが発生した場合、ここに保存されます。SQL 構文のエラーは
|
|
<function>sqlite_last_error</function> 関数で取得することが
|
|
できないため、このパラメータが特に重要となります。
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</para>
|
|
&sqlite.param-compat;
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
結果セットを返します。&return.falseforfailure;。
|
|
</para>
|
|
<para>
|
|
<function>sqlite_unbuffered_query</function> は、
|
|
各レコードを順番に読み込む場合にのみ利用可能な
|
|
シーケンシャルで前進のみ可能な結果セットを返します。
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="changelog">
|
|
&reftitle.changelog;
|
|
<para>
|
|
<informaltable>
|
|
<tgroup cols="2">
|
|
<thead>
|
|
<row>
|
|
<entry>&Version;</entry>
|
|
<entry>&Description;</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry>5.1.0</entry>
|
|
<entry>
|
|
<parameter>error_msg</parameter> パラメータが追加されました。
|
|
</entry>
|
|
</row>
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<para>
|
|
<simplelist>
|
|
<member><function>sqlite_query</function></member>
|
|
</simplelist>
|
|
</para>
|
|
</refsect1>
|
|
</refentry>
|
|
|
|
<!-- 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
|
|
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
|
|
-->
|