|
141 | 141 | Sends a request to create a prepared statement with the given |
142 | 142 | parameters, without waiting for completion. |
143 | 143 | </span> |
144 | | -指定パラメータを持つ準備された文の作成要求を送信します。 |
| 144 | +指定パラメータを持つプリペアド文の作成要求を送信します。 |
145 | 145 | その完了を待ちません。 |
146 | 146 | </p><pre class="synopsis"> |
147 | 147 | int PQsendPrepare(PGconn *conn, |
|
161 | 161 | </span> |
162 | 162 | これは<a class="xref" href="libpq-exec.html#LIBPQ-PQPREPARE"><code class="function">PQprepare</code></a>の非同期版です。 |
163 | 163 | 要求の登録に成功した場合1が、失敗した場合0が返されます。 |
164 | | -呼び出しの成功の後、サーバが準備された文の生成に成功したかを確認するためには<a class="xref" href="libpq-async.html#LIBPQ-PQGETRESULT"><code class="function">PQgetResult</code></a>を呼び出してください。 |
| 164 | +呼び出しの成功の後、サーバがプリペアド文の生成に成功したかを確認するためには<a class="xref" href="libpq-async.html#LIBPQ-PQGETRESULT"><code class="function">PQgetResult</code></a>を呼び出してください。 |
165 | 165 | この関数のパラメータは<a class="xref" href="libpq-exec.html#LIBPQ-PQPREPARE"><code class="function">PQprepare</code></a>と同様に扱われます。 |
166 | 166 | </p></dd><dt id="LIBPQ-PQSENDQUERYPREPARED"><span class="term"><code class="function">PQsendQueryPrepared</code><a id="id-1.7.3.11.5.19.4.1.2" class="indexterm"></a></span> <a href="#LIBPQ-PQSENDQUERYPREPARED" class="id_link">#</a></dt><dd><p> |
167 | 167 | <span class="original"> |
168 | 168 | Sends a request to execute a prepared statement with given |
169 | 169 | parameters, without waiting for the result(s). |
170 | 170 | </span> |
171 | | -結果を待つことなく、指定したパラメータで準備された文の実行要求を送信します。 |
| 171 | +結果を待つことなく、指定したパラメータでプリペアド文の実行要求を送信します。 |
172 | 172 | </p><pre class="synopsis"> |
173 | 173 | int PQsendQueryPrepared(PGconn *conn, |
174 | 174 | const char *stmtName, |
|
186 | 186 | The function's parameters are handled identically to |
187 | 187 | <xref linkend="libpq-PQexecPrepared"/>. |
188 | 188 | </span> |
189 | | -これは<a class="xref" href="libpq-async.html#LIBPQ-PQSENDQUERYPARAMS"><code class="function">PQsendQueryParams</code></a>と似ていますが、実行されるコマンドは問い合わせ文字列ではなく、事前に準備された文の名前で指定されます。 |
| 189 | +これは<a class="xref" href="libpq-async.html#LIBPQ-PQSENDQUERYPARAMS"><code class="function">PQsendQueryParams</code></a>と似ていますが、実行されるコマンドは問い合わせ文字列ではなく、事前にプリペアド文の名前で指定されます。 |
190 | 190 | この関数のパラメータは<a class="xref" href="libpq-exec.html#LIBPQ-PQEXECPREPARED"><code class="function">PQexecPrepared</code></a>と同様に扱われます。 |
191 | 191 | </p></dd><dt id="LIBPQ-PQSENDDESCRIBEPREPARED"><span class="term"><code class="function">PQsendDescribePrepared</code><a id="id-1.7.3.11.5.19.5.1.2" class="indexterm"></a></span> <a href="#LIBPQ-PQSENDDESCRIBEPREPARED" class="id_link">#</a></dt><dd><p> |
192 | 192 | <span class="original"> |
193 | 193 | Submits a request to obtain information about the specified |
194 | 194 | prepared statement, without waiting for completion. |
195 | 195 | </span> |
196 | | -指定した準備された文に関する情報入手要求を送ります。 |
| 196 | +指定したプリペアド文に関する情報入手要求を送ります。 |
197 | 197 | 入手完了まで待機しません。 |
198 | 198 | </p><pre class="synopsis"> |
199 | 199 | int PQsendDescribePrepared(PGconn *conn, const char *stmtName); |
|
237 | 237 | Submits a request to close the specified prepared statement, without |
238 | 238 | waiting for completion. |
239 | 239 | </span> |
240 | | -完了を待たずに、指定した準備された文を閉じる要求を送信します。 |
| 240 | +完了を待たずに、指定したプリペアド文を閉じる要求を送信します。 |
241 | 241 | </p><pre class="synopsis"> |
242 | 242 | int PQsendClosePrepared(PGconn *conn, const char *stmtName); |
243 | 243 | </pre><p> |
|
0 commit comments