Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc5e0415

Browse files
author
Neil Conway
committed
Minor SGML work: add some more hyperlinks, where appropriate.
1 parent4d39c6b commitc5e0415

File tree

5 files changed

+23
-18
lines changed

5 files changed

+23
-18
lines changed

‎doc/src/sgml/ref/commit_prepared.sgml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/commit_prepared.sgml,v 1.1 2005/06/17 22:32:42 tgl Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/commit_prepared.sgml,v 1.2 2006/02/26 03:20:46 neilc Exp $
33
PostgreSQL documentation
44
-->
55

@@ -65,7 +65,8 @@ COMMIT PREPARED <replaceable class="PARAMETER">transaction_id</replaceable>
6565

6666
<para>
6767
All currently available prepared transactions are listed in the
68-
<structname>pg_prepared_xacts</> system view.
68+
<link linkend="view-pg-prepared-xacts"><structname>pg_prepared_xacts</structname></link>
69+
system view.
6970
</para>
7071
</refsect1>
7172

‎doc/src/sgml/ref/declare.sgml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/declare.sgml,v 1.36 2006/02/1220:31:58 tgl Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/declare.sgml,v 1.37 2006/02/26 03:20:46 neilc Exp $
33
PostgreSQL documentation
44
-->
55

@@ -258,8 +258,9 @@ DECLARE <replaceable class="parameter">name</replaceable> [ BINARY ] [ INSENSITI
258258
</para>
259259

260260
<para>
261-
You can see all available cursors by querying the
262-
<structname>pg_cursors</structname> system view.
261+
You can see all available cursors by querying the <link
262+
linkend="view-pg-cursors"><structname>pg_cursors</structname></link>
263+
system view.
263264
</para>
264265
</refsect1>
265266

‎doc/src/sgml/ref/prepare.sgml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/prepare.sgml,v 1.18 2006/01/15 22:18:46 neilc Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/prepare.sgml,v 1.19 2006/02/26 03:20:46 neilc Exp $
33
PostgreSQL documentation
44
-->
55

@@ -153,7 +153,8 @@ PREPARE <replaceable class="PARAMETER">name</replaceable> [ (<replaceable class=
153153

154154
<para>
155155
You can see all available prepared statements of a session by querying the
156-
<structname>pg_prepared_statements</> system view.
156+
<link linkend="view-pg-prepared-statements"><structname>pg_prepared_statements</structname></link>
157+
system view.
157158
</para>
158159
</refsect1>
159160

‎doc/src/sgml/ref/prepare_transaction.sgml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/prepare_transaction.sgml,v 1.3 2005/08/30 01:37:38 tgl Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/prepare_transaction.sgml,v 1.4 2006/02/26 03:20:46 neilc Exp $
33
PostgreSQL documentation
44
-->
55

@@ -37,11 +37,11 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
3737
</para>
3838

3939
<para>
40-
Once prepared, a transaction can later be committed or rolled
41-
backwith <command>COMMIT PREPARED</command> or
42-
<command>ROLLBACK PREPARED</command>, respectively. Those commands
43-
can be issued from any session, not only the one that executed the
44-
original transaction.
40+
Once prepared, a transaction can later be committed or rolled back
41+
with <xref linkend="sql-commit-prepared" endterm="sql-commit-prepared-title">
42+
or <xref linkend="sql-rollback-prepared" endterm="sql-rollback-prepared-title">,
43+
respectively. Those commandscan be issued from any session, not
44+
only the one that executed theoriginal transaction.
4545
</para>
4646

4747
<para>
@@ -82,8 +82,8 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
8282
<title>Notes</title>
8383

8484
<para>
85-
This command must be used inside a transaction block. Use
86-
<command>BEGIN</command> to start one.
85+
This command must be used inside a transaction block. Use <xref
86+
linkend="sql-begin" endterm="sql-begin-title"> to start one.
8787
</para>
8888

8989
<para>
@@ -104,7 +104,8 @@ PREPARE TRANSACTION <replaceable class="PARAMETER">transaction_id</replaceable>
104104

105105
<para>
106106
All currently available prepared transactions are listed in the
107-
<structname>pg_prepared_xacts</> system view.
107+
<link linkend="view-pg-prepared-xacts"><structname>pg_prepared_xacts</structname></link>
108+
system view.
108109
</para>
109110

110111
<para>

‎doc/src/sgml/ref/rollback_prepared.sgml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/rollback_prepared.sgml,v 1.1 2005/06/17 22:32:42 tgl Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/rollback_prepared.sgml,v 1.2 2006/02/26 03:20:46 neilc Exp $
33
PostgreSQL documentation
44
-->
55

@@ -65,7 +65,8 @@ ROLLBACK PREPARED <replaceable class="PARAMETER">transaction_id</replaceable>
6565

6666
<para>
6767
All currently available prepared transactions are listed in the
68-
<structname>pg_prepared_xacts</> system view.
68+
<link linkend="view-pg-prepared-xacts"><structname>pg_prepared_xacts</structname></link>
69+
system view.
6970
</para>
7071
</refsect1>
7172

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp