Update new Russian FAQ.
This commit is contained in:
parent
40eb5495c9
commit
5129e1bde6
1163
doc/FAQ_russian
1163
doc/FAQ_russian
File diff suppressed because it is too large
Load Diff
@ -14,7 +14,7 @@
|
||||
alink="#0000ff">
|
||||
<H1>Ответы на часто задаваемые вопросы по PostgreSQL</H1>
|
||||
|
||||
<P>Дата последнего обновления: Воскресенье 3 Марта 13:35:39 EST 2002</P>
|
||||
<P>Дата последнего обновления: Вторник 9 Апреля 10:53:30 EDT 2002</P>
|
||||
|
||||
<P>Английский вариант сопровождает: Брюс Момьян (Bruce Momjian) (<A href=
|
||||
"mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</A>)<BR>
|
||||
@ -137,6 +137,7 @@
|
||||
<A href="#4.23">4.23</A>) Как выполнить внешнее связывание?<BR>
|
||||
<A href="#4.24">4.24</A>) Как выполнять запросы, использующие несколько
|
||||
баз данных?<BR>
|
||||
<A href="#4.25">4.25</A>) Как мне вернуть из функции несколько записей?<BR>
|
||||
|
||||
|
||||
<H2 align="center">Расширения PostgreSQL</H2>
|
||||
@ -337,7 +338,7 @@
|
||||
и <a href="http://www.commandprompt.com/ppbook/">http://www.commandprompt.com/ppbook/</a>.
|
||||
Список книг по PostgreSQL, которые можно купить доступен по адресу
|
||||
<a href="http://www.postgresql.org/books/">http://www.postgresql.org/books/</a>.
|
||||
Кроме того, по адресу <a href="http://techdocs.postgresql.org/">http://techdocs.postgresql.org/</a>
|
||||
Кроме того, по адресу <a href="http://techdocs.postgresql.org">http://techdocs.postgresql.org/</a>
|
||||
вы можете найти коллекцию технических статей посвященных PostgreSQL.</p>
|
||||
|
||||
|
||||
@ -1340,6 +1341,14 @@ BYTEA bytea
|
||||
|
||||
<P>Разумеется, клиент может одновременно устанавливать соедиенения с
|
||||
различными базами данных и таких образом объединять информацию из них.</P>
|
||||
|
||||
<H4><A name="4.25">4.25</A>) Как мне вернуть из функции несколько записей?</H4>
|
||||
|
||||
<P>Вы можете возвращать из функций PL/pgSQL списки результатов, используя
|
||||
<i>refcursors</i>. Смотрите <a
|
||||
href="http://developer.postgresql.org/docs/postgres/plpgsql-cursors.html">
|
||||
http://developer.postgresql.org/docs/postgres/plpgsql-cursors.html,</a>
|
||||
секцию 23.7.3.3.</P>
|
||||
<HR>
|
||||
|
||||
<H2 align="center">Расширения PostgreSQL</H2>
|
||||
|
@ -10,7 +10,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.146 2002/04/09 20:35:53 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/utility.c,v 1.147 2002/04/12 09:17:10 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -423,7 +423,7 @@ ProcessUtility(Node *parsetree,
|
||||
(ColumnDef *) stmt->def);
|
||||
break;
|
||||
case 'T': /* ALTER COLUMN DEFAULT */
|
||||
/*
|
||||
/*
|
||||
* Recursively alter column default for table and,
|
||||
* if requested, for descendants
|
||||
*/
|
||||
@ -455,7 +455,7 @@ ProcessUtility(Node *parsetree,
|
||||
&(stmt->subtype));
|
||||
break;
|
||||
case 'D': /* DROP COLUMN */
|
||||
/*
|
||||
/*
|
||||
* XXX We don't actually recurse yet, but what we should do would be:
|
||||
* Recursively drop column from table and,
|
||||
* if requested, from descendants
|
||||
@ -471,16 +471,16 @@ ProcessUtility(Node *parsetree,
|
||||
* if requested, to descendants
|
||||
*/
|
||||
AlterTableAddConstraint(RangeVarGetRelid(stmt->relation, false),
|
||||
interpretInhOption(stmt->relation->inhOpt),
|
||||
interpretInhOption(stmt->relation->inhOpt),
|
||||
(List *) stmt->def);
|
||||
break;
|
||||
case 'X': /* DROP CONSTRAINT */
|
||||
/*
|
||||
/*
|
||||
* Recursively drop constraint from table and,
|
||||
* if requested, from descendants
|
||||
*/
|
||||
AlterTableDropConstraint(RangeVarGetRelid(stmt->relation, false),
|
||||
interpretInhOption(stmt->relation->inhOpt),
|
||||
interpretInhOption(stmt->relation->inhOpt),
|
||||
stmt->name,
|
||||
stmt->behavior);
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user