1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
|
<sect1 id="dblink">
<title>dblink</title>
<indexterm zone="dblink">
<primary>dblink</primary>
</indexterm>
<para>
<literal>dblink</> is a module which allows connections with
other databases.
</para>
<refentry id="CONTRIB-DBLINK-CONNECT">
<refnamediv>
<refname>dblink_connect</refname>
<refpurpose>opens a persistent connection to a remote database</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_connect(text connstr)
dblink_connect(text connname, text connstr)
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>connname</title>
<para>
if 2 arguments ar given, the first is used as a name for a persistent
connection
</para>
</refsect2>
<refsect2>
<title>connstr</title>
<para>
standard libpq format connection string,
e.g. "hostaddr=127.0.0.1 port=5432 dbname=mydb user=postgres password=mypasswd"
</para>
<para>
if only one argument is given, the connection is unnamed; only one unnamed
connection can exist at a time
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>Returns status = "OK"</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
select dblink_connect('dbname=postgres');
dblink_connect
----------------
OK
(1 row)
select dblink_connect('myconn','dbname=postgres');
dblink_connect
----------------
OK
(1 row)
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-DISCONNECT">
<refnamediv>
<refname>dblink_disconnect</refname>
<refpurpose>closes a persistent connection to a remote database</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_disconnect()
dblink_disconnect(text connname)
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>connname</title>
<para>
if an argument is given, it is used as a name for a persistent
connection to close; otherwiase the unnamed connection is closed
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>Returns status = "OK"</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
test=# select dblink_disconnect();
dblink_disconnect
-------------------
OK
(1 row)
select dblink_disconnect('myconn');
dblink_disconnect
-------------------
OK
(1 row)
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-OPEN">
<refnamediv>
<refname>dblink_open</refname>
<refpurpose>opens a cursor on a remote database</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_open(text cursorname, text sql [, bool fail_on_error])
dblink_open(text connname, text cursorname, text sql [, bool fail_on_error])
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>connname</title>
<para>
if three arguments are present, the first is taken as the specific
connection name to use; otherwise the unnamed connection is assumed
</para>
</refsect2>
<refsect2>
<title>cursorname</title>
<para>
a reference name for the cursor
</para>
</refsect2>
<refsect2>
<title>sql</title>
<para>
sql statement that you wish to execute on the remote host
e.g. "select * from pg_class"
</para>
</refsect2>
<refsect2>
<title>fail_on_error</title>
<para>
If true (default when not present) then an ERROR thrown on the remote side
of the connection causes an ERROR to also be thrown locally. If false, the
remote ERROR is locally treated as a NOTICE, and the return value is set
to 'ERROR'.
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>Returns status = "OK"</para>
</refsect1>
<refsect1>
<title>Note</title>
<itemizedlist>
<listitem>
<para>
dblink_connect(text connstr) must be executed first
</para>
</listitem>
<listitem>
<para>
dblink_open starts an explicit transaction. If, after using dblink_open,
you use dblink_exec to change data, and then an error occurs or you use
dblink_disconnect without a dblink_close first, your change *will* be
lost. Also, using dblink_close explicitly ends the transaction and thus
effectively closes *all* open cursors.
</para>
</listitem>
</itemizedlist>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
test=# select dblink_connect('dbname=postgres');
dblink_connect
----------------
OK
(1 row)
test=# select dblink_open('foo','select proname, prosrc from pg_proc');
dblink_open
-------------
OK
(1 row)
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-FETCH">
<refnamediv>
<refname>dblink_fetch</refname>
<refpurpose>returns a set from an open cursor on a remote database</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_fetch(text cursorname, int32 howmany [, bool fail_on_error])
dblink_fetch(text connname, text cursorname, int32 howmany [, bool fail_on_error])
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>connname</title>
<para>
if three arguments are present, the first is taken as the specific
connection name to use; otherwise the unnamed connection is assumed
</para>
</refsect2>
<refsect2>
<title>cursorname</title>
<para>
The reference name for the cursor
</para>
</refsect2>
<refsect2>
<title>howmany</title>
<para>
Maximum number of rows to retrieve. The next howmany rows are fetched,
starting at the current cursor position, moving forward. Once the cursor
has positioned to the end, no more rows are produced.
</para>
</refsect2>
<refsect2>
<title>fail_on_error</title>
<para>
If true (default when not present) then an ERROR thrown on the remote side
of the connection causes an ERROR to also be thrown locally. If false, the
remote ERROR is locally treated as a NOTICE, and no rows are returned.
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>Returns setof record</para>
</refsect1>
<refsect1>
<title>Note</title>
<para>
On a mismatch between the number of return fields as specified in the FROM
clause, and the actual number of fields returned by the remote cursor, an
ERROR will be thrown. In this event, the remote cursor is still advanced
by as many rows as it would have been if the ERROR had not occurred.
</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
test=# select dblink_connect('dbname=postgres');
dblink_connect
----------------
OK
(1 row)
test=# select dblink_open('foo','select proname, prosrc from pg_proc where proname like ''bytea%''');
dblink_open
-------------
OK
(1 row)
test=# select * from dblink_fetch('foo',5) as (funcname name, source text);
funcname | source
----------+----------
byteacat | byteacat
byteacmp | byteacmp
byteaeq | byteaeq
byteage | byteage
byteagt | byteagt
(5 rows)
test=# select * from dblink_fetch('foo',5) as (funcname name, source text);
funcname | source
-----------+-----------
byteain | byteain
byteale | byteale
bytealike | bytealike
bytealt | bytealt
byteane | byteane
(5 rows)
test=# select * from dblink_fetch('foo',5) as (funcname name, source text);
funcname | source
------------+------------
byteanlike | byteanlike
byteaout | byteaout
(2 rows)
test=# select * from dblink_fetch('foo',5) as (funcname name, source text);
funcname | source
----------+--------
(0 rows)
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-CLOSE">
<refnamediv>
<refname>dblink_close</refname>
<refpurpose>closes a cursor on a remote database</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_close(text cursorname [, bool fail_on_error])
dblink_close(text connname, text cursorname [, bool fail_on_error])
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>connname</title>
<para>
if two arguments are present, the first is taken as the specific
connection name to use; otherwise the unnamed connection is assumed
</para>
</refsect2>
<refsect2>
<title>cursorname</title>
<para>
a reference name for the cursor
</para>
</refsect2>
<refsect2>
<title>fail_on_error</title>
<para>
If true (default when not present) then an ERROR thrown on the remote side
of the connection causes an ERROR to also be thrown locally. If false, the
remote ERROR is locally treated as a NOTICE, and the return value is set
to 'ERROR'.
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>Returns status = "OK"</para>
</refsect1>
<refsect1>
<title>Note</title>
<para>
dblink_connect(text connstr) or dblink_connect(text connname, text connstr)
must be executed first.
</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
test=# select dblink_connect('dbname=postgres');
dblink_connect
----------------
OK
(1 row)
test=# select dblink_open('foo','select proname, prosrc from pg_proc');
dblink_open
-------------
OK
(1 row)
test=# select dblink_close('foo');
dblink_close
--------------
OK
(1 row)
select dblink_connect('myconn','dbname=regression');
dblink_connect
----------------
OK
(1 row)
select dblink_open('myconn','foo','select proname, prosrc from pg_proc');
dblink_open
-------------
OK
(1 row)
select dblink_close('myconn','foo');
dblink_close
--------------
OK
(1 row)
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-EXEC">
<refnamediv>
<refname>dblink_exec</refname>
<refpurpose>executes an UPDATE/INSERT/DELETE on a remote database</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_exec(text connstr, text sql [, bool fail_on_error])
dblink_exec(text connname, text sql [, bool fail_on_error])
dblink_exec(text sql [, bool fail_on_error])
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>connname/connstr</title>
<para>
If two arguments are present, the first is first assumed to be a specific
connection name to use. If the name is not found, the argument is then
assumed to be a valid connection string, of standard libpq format,
e.g.: "hostaddr=127.0.0.1 dbname=mydb user=postgres password=mypasswd"
If only one argument is used, then the unnamed connection is used.
</para>
</refsect2>
<refsect2>
<title>sql</title>
<para>
sql statement that you wish to execute on the remote host, e.g.:
insert into foo values(0,'a','{"a0","b0","c0"}');
</para>
</refsect2>
<refsect2>
<title>fail_on_error</title>
<para>
If true (default when not present) then an ERROR thrown on the remote side
of the connection causes an ERROR to also be thrown locally. If false, the
remote ERROR is locally treated as a NOTICE, and the return value is set
to 'ERROR'.
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>Returns status of the command, or 'ERROR' if the command failed.</para>
</refsect1>
<refsect1>
<title>Notes</title>
<para>
dblink_open starts an explicit transaction. If, after using dblink_open,
you use dblink_exec to change data, and then an error occurs or you use
dblink_disconnect without a dblink_close first, your change *will* be
lost.
</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
select dblink_connect('dbname=dblink_test_slave');
dblink_connect
----------------
OK
(1 row)
select dblink_exec('insert into foo values(21,''z'',''{"a0","b0","c0"}'');');
dblink_exec
-----------------
INSERT 943366 1
(1 row)
select dblink_connect('myconn','dbname=regression');
dblink_connect
----------------
OK
(1 row)
select dblink_exec('myconn','insert into foo values(21,''z'',''{"a0","b0","c0"}'');');
dblink_exec
------------------
INSERT 6432584 1
(1 row)
select dblink_exec('myconn','insert into pg_class values (''foo'')',false);
NOTICE: sql error
DETAIL: ERROR: null value in column "relnamespace" violates not-null constraint
dblink_exec
-------------
ERROR
(1 row)
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-CURRENT-QUERY">
<refnamediv>
<refname>dblink_current_query</refname>
<refpurpose>returns the current query string</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_current_query () RETURNS text
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>None</title>
<para>
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>Returns test -- a copy of the currenty executing query</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
test=# select dblink_current_query() from (select dblink('dbname=postgres','select oid, proname from pg_proc where proname = ''byteacat''') as f1) as t1;
dblink_current_query
-----------------------------------------------------------------------------------------------------------------------------------------------------
select dblink_current_query() from (select dblink('dbname=postgres','select oid, proname from pg_proc where proname = ''byteacat''') as f1) as t1;
(1 row)
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-GET-PKEY">
<refnamediv>
<refname>dblink_get_pkey</refname>
<refpurpose>returns the position and field names of a relation's
primary key fields
</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_get_pkey(text relname) RETURNS setof dblink_pkey_results
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>relname</title>
<para>
any relation name;
e.g. 'foobar'
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>
Returns setof dblink_pkey_results -- one row for each primary key field,
in order of position in the key. dblink_pkey_results is defined as follows:
CREATE TYPE dblink_pkey_results AS (position int4, colname text);
</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
test=# select * from dblink_get_pkey('foobar');
position | colname
----------+---------
1 | f1
2 | f2
3 | f3
4 | f4
5 | f5
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-BUILD-SQL-INSERT">
<refnamediv>
<refname>dblink_build_sql_insert</refname>
<refpurpose>
builds an insert statement using a local tuple, replacing the
selection key field values with alternate supplied values
</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_build_sql_insert(text relname
,int2vector primary_key_attnums
,int2 num_primary_key_atts
,_text src_pk_att_vals_array
,_text tgt_pk_att_vals_array) RETURNS text
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>relname</title>
<para>
any relation name;
e.g. 'foobar';
</para>
</refsect2>
<refsect2>
<title>primary_key_attnums</title>
<para>
vector of primary key attnums (1 based, see pg_index.indkey);
e.g. '1 2'
</para>
</refsect2>
<refsect2>
<title>num_primary_key_atts</title>
<para>
number of primary key attnums in the vector; e.g. 2
</para>
</refsect2>
<refsect2>
<title>src_pk_att_vals_array</title>
<para>
array of primary key values, used to look up the local matching
tuple, the values of which are then used to construct the SQL
statement
</para>
</refsect2>
<refsect2>
<title>tgt_pk_att_vals_array</title>
<para>
array of primary key values, used to replace the local tuple
values in the SQL statement
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>Returns text -- requested SQL statement</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
test=# select dblink_build_sql_insert('foo','1 2',2,'{"1", "a"}','{"1", "b''a"}');
dblink_build_sql_insert
--------------------------------------------------
INSERT INTO foo(f1,f2,f3) VALUES('1','b''a','1')
(1 row)
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-BUILD-SQL-DELETE">
<refnamediv>
<refname>dblink_build_sql_delete</refname>
<refpurpose>builds a delete statement using supplied values for selection
key field values
</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_build_sql_delete(text relname
,int2vector primary_key_attnums
,int2 num_primary_key_atts
,_text tgt_pk_att_vals_array) RETURNS text
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>relname</title>
<para>
any relation name;
e.g. 'foobar';
</para>
</refsect2>
<refsect2>
<title>primary_key_attnums</title>
<para>
vector of primary key attnums (1 based, see pg_index.indkey);
e.g. '1 2'
</para>
</refsect2>
<refsect2>
<title>num_primary_key_atts</title>
<para>
number of primary key attnums in the vector; e.g. 2
</para>
</refsect2>
<refsect2>
<title>src_pk_att_vals_array</title>
<para>
array of primary key values, used to look up the local matching
tuple, the values of which are then used to construct the SQL
statement
</para>
</refsect2>
<refsect2>
<title>tgt_pk_att_vals_array</title>
<para>
array of primary key values, used to replace the local tuple
values in the SQL statement
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>Returns text -- requested SQL statement</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
test=# select dblink_build_sql_delete('MyFoo','1 2',2,'{"1", "b"}');
dblink_build_sql_delete
---------------------------------------------
DELETE FROM "MyFoo" WHERE f1='1' AND f2='b'
(1 row)
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-BUILD-SQL-UPDATE">
<refnamediv>
<refname>dblink_build_sql_update</refname>
<refpurpose>builds an update statement using a local tuple, replacing
the selection key field values with alternate supplied values
</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_build_sql_update(text relname
,int2vector primary_key_attnums
,int2 num_primary_key_atts
,_text src_pk_att_vals_array
,_text tgt_pk_att_vals_array) RETURNS text
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>relname</title>
<para>
any relation name;
e.g. 'foobar';
</para>
</refsect2>
<refsect2>
<title>primary_key_attnums</title>
<para>
vector of primary key attnums (1 based, see pg_index.indkey);
e.g. '1 2'
</para>
</refsect2>
<refsect2>
<title>num_primary_key_atts</title>
<para>
number of primary key attnums in the vector; e.g. 2
</para>
</refsect2>
<refsect2>
<title>src_pk_att_vals_array</title>
<para>
array of primary key values, used to look up the local matching
tuple, the values of which are then used to construct the SQL
statement
</para>
</refsect2>
<refsect2>
<title>tgt_pk_att_vals_array</title>
<para>
array of primary key values, used to replace the local tuple
values in the SQL statement
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>Returns text -- requested SQL statement</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
test=# select dblink_build_sql_update('foo','1 2',2,'{"1", "a"}','{"1", "b"}');
dblink_build_sql_update
-------------------------------------------------------------
UPDATE foo SET f1='1',f2='b',f3='1' WHERE f1='1' AND f2='b'
(1 row)
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-GET-CONNECTIONS">
<refnamediv>
<refname>dblink_get_connections</refname>
<refpurpose>returns a text array of all active named dblink connections</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_get_connections() RETURNS text[]
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>none</title>
<para></para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>Returns text array of all active named dblink connections</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
SELECT dblink_get_connections();
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-IS-BUSY">
<refnamediv>
<refname>dblink_is_busy</refname>
<refpurpose>checks to see if named connection is busy with an async query</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_is_busy(text connname) RETURNS int
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>connname</title>
<para>
The specific connection name to use
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>
Returns 1 if connection is busy, 0 if it is not busy.
If this function returns 0, it is guaranteed that dblink_get_result
will not block.
</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
SELECT dblink_is_busy('dtest1');
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-CANCEL-QUERY">
<refnamediv>
<refname>dblink_cancel_query</refname>
<refpurpose>cancels any active query on the named connection</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_cancel_query(text connname) RETURNS text
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>connname</title>
<para>
The specific connection name to use.
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>
Returns "OK" on success, or an error message on failure.
</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
SELECT dblink_cancel_query('dtest1');
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-ERROR-MESSAGE">
<refnamediv>
<refname>dblink_error_message</refname>
<refpurpose>gets last error message on the named connection</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_error_message(text connname) RETURNS text
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>connname</title>
<para>
The specific connection name to use.
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>
Returns last error message.
</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
SELECT dblink_error_message('dtest1');
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK">
<refnamediv>
<refname>dblink</refname>
<refpurpose>returns a set from a remote database</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink(text connstr, text sql [, bool fail_on_error])
dblink(text connname, text sql [, bool fail_on_error])
dblink(text sql [, bool fail_on_error])
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>connname/connstr</title>
<para>
If two arguments are present, the first is first assumed to be a specific
connection name to use. If the name is not found, the argument is then
assumed to be a valid connection string, of standard libpq format,
e.g.: "hostaddr=127.0.0.1 dbname=mydb user=postgres password=mypasswd"
If only one argument is used, then the unnamed connection is used.
</para>
</refsect2>
<refsect2>
<title>sql</title>
<para>
sql statement that you wish to execute on the remote host
e.g. "select * from pg_class"
</para>
</refsect2>
<refsect2>
<title>fail_on_error</title>
<para>
If true (default when not present) then an ERROR thrown on the remote side
of the connection causes an ERROR to also be thrown locally. If false, the
remote ERROR is locally treated as a NOTICE, and no rows are returned.
</para>
</refsect2>
<refsect2>
<title></title>
<para>
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>Returns setof record</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
select * from dblink('dbname=postgres','select proname, prosrc from pg_proc')
as t1(proname name, prosrc text) where proname like 'bytea%';
proname | prosrc
------------+------------
byteacat | byteacat
byteaeq | byteaeq
bytealt | bytealt
byteale | byteale
byteagt | byteagt
byteage | byteage
byteane | byteane
byteacmp | byteacmp
bytealike | bytealike
byteanlike | byteanlike
byteain | byteain
byteaout | byteaout
(12 rows)
select dblink_connect('dbname=postgres');
dblink_connect
----------------
OK
(1 row)
select * from dblink('select proname, prosrc from pg_proc')
as t1(proname name, prosrc text) where proname like 'bytea%';
proname | prosrc
------------+------------
byteacat | byteacat
byteaeq | byteaeq
bytealt | bytealt
byteale | byteale
byteagt | byteagt
byteage | byteage
byteane | byteane
byteacmp | byteacmp
bytealike | bytealike
byteanlike | byteanlike
byteain | byteain
byteaout | byteaout
(12 rows)
select dblink_connect('myconn','dbname=regression');
dblink_connect
----------------
OK
(1 row)
select * from dblink('myconn','select proname, prosrc from pg_proc')
as t1(proname name, prosrc text) where proname like 'bytea%';
proname | prosrc
------------+------------
bytearecv | bytearecv
byteasend | byteasend
byteale | byteale
byteagt | byteagt
byteage | byteage
byteane | byteane
byteacmp | byteacmp
bytealike | bytealike
byteanlike | byteanlike
byteacat | byteacat
byteaeq | byteaeq
bytealt | bytealt
byteain | byteain
byteaout | byteaout
(14 rows)
</programlisting>
<para>
A more convenient way to use dblink may be to create a view:
</para>
<programlisting>
create view myremote_pg_proc as
select *
from dblink('dbname=postgres','select proname, prosrc from pg_proc')
as t1(proname name, prosrc text);
</programlisting>
<para>
Then you can simply write:
</para>
<programlisting>
select * from myremote_pg_proc where proname like 'bytea%';
</programlisting>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-SEND-QUERY">
<refnamediv>
<refname>dblink_send_query</refname>
<refpurpose>sends an async query to a remote database</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_send_query(text connname, text sql)
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>connname</title>
<para>
The specific connection name to use.
</para>
</refsect2>
<refsect2>
<title>sql</title>
<para>
sql statement that you wish to execute on the remote host
e.g. "select * from pg_class"
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>
Returns int. A return value of 1 if the query was successfully dispatched,
0 otherwise. If 1, results must be fetched by dblink_get_result(connname).
A running query may be cancelled by dblink_cancel_query(connname).
</para>
</refsect1>
<refsect1>
<title>Example</title>
<para>
<literal>
SELECT dblink_connect('dtest1', 'dbname=contrib_regression');
SELECT * FROM
dblink_send_query('dtest1', 'SELECT * FROM foo WHERE f1 < 3') AS t1;
</literal>
</para>
</refsect1>
</refentry>
<refentry id="CONTRIB-DBLINK-GET-RESULT">
<refnamediv>
<refname>dblink_get_result</refname>
<refpurpose>gets an async query result</refpurpose>
</refnamediv>
<refsynopsisdiv>
<synopsis>
dblink_get_result(text connname [, bool fail_on_error])
</synopsis>
</refsynopsisdiv>
<refsect1>
<title>Inputs</title>
<refsect2>
<title>connname</title>
<para>
The specific connection name to use. An asynchronous query must
have already been sent using dblink_send_query()
</para>
</refsect2>
<refsect2>
<title>fail_on_error</title>
<para>
If true (default when not present) then an ERROR thrown on the remote side
of the connection causes an ERROR to also be thrown locally. If false, the
remote ERROR is locally treated as a NOTICE, and no rows are returned.
</para>
</refsect2>
</refsect1>
<refsect1>
<title>Outputs</title>
<para>Returns setof record</para>
</refsect1>
<refsect1>
<title>Notes</title>
<para>
Blocks until a result gets available.
This function *must* be called if dblink_send_query returned
a 1, even on cancelled queries - otherwise the connection
can't be used anymore. It must be called once for each query
sent, and one additional time to obtain an empty set result,
prior to using the connection again.
</para>
</refsect1>
<refsect1>
<title>Example</title>
<programlisting>
contrib_regression=# SELECT dblink_connect('dtest1', 'dbname=contrib_regression');
dblink_connect
----------------
OK
(1 row)
contrib_regression=# SELECT * from
contrib_regression-# dblink_send_query('dtest1', 'select * from foo where f1 < 3') as t1;
t1
----
1
(1 row)
contrib_regression=# SELECT * from dblink_get_result('dtest1') as t1(f1 int, f2 text, f3 text[]);
f1 | f2 | f3
----+----+------------
0 | a | {a0,b0,c0}
1 | b | {a1,b1,c1}
2 | c | {a2,b2,c2}
(3 rows)
contrib_regression=# SELECT * from dblink_get_result('dtest1') as t1(f1 int, f2 text, f3 text[]);
f1 | f2 | f3
----+----+----
(0 rows)
contrib_regression=# SELECT * from
dblink_send_query('dtest1', 'select * from foo where f1 < 3; select * from foo where f1 > 6') as t1;
t1
----
1
(1 row)
contrib_regression=# SELECT * from dblink_get_result('dtest1') as t1(f1 int, f2 text, f3 text[]);
f1 | f2 | f3
----+----+------------
0 | a | {a0,b0,c0}
1 | b | {a1,b1,c1}
2 | c | {a2,b2,c2}
(3 rows)
contrib_regression=# SELECT * from dblink_get_result('dtest1') as t1(f1 int, f2 text, f3 text[]);
f1 | f2 | f3
----+----+---------------
7 | h | {a7,b7,c7}
8 | i | {a8,b8,c8}
9 | j | {a9,b9,c9}
10 | k | {a10,b10,c10}
(4 rows)
contrib_regression=# SELECT * from dblink_get_result('dtest1') as t1(f1 int, f2 text, f3 text[]);
f1 | f2 | f3
----+----+----
(0 rows)
</programlisting>
</refsect1>
</refentry>
</sect1>
|