Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
47731982
Commit
47731982
authored
Aug 09, 2010
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Provide stable target anchors for libpq functions.
Daniele Varrazzo
parent
2e35d4f3
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
162 additions
and
162 deletions
+162
-162
doc/src/sgml/libpq.sgml
doc/src/sgml/libpq.sgml
+150
-150
doc/src/sgml/lobj.sgml
doc/src/sgml/lobj.sgml
+12
-12
No files found.
doc/src/sgml/libpq.sgml
View file @
47731982
This diff is collapsed.
Click to expand it.
doc/src/sgml/lobj.sgml
View file @
47731982
<!-- $PostgreSQL: pgsql/doc/src/sgml/lobj.sgml,v 1.5
3 2010/04/03 07:22:55 petere
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/lobj.sgml,v 1.5
4 2010/08/09 12:00:24 rhaas
Exp $ -->
<chapter id="largeObjects">
<title>Large Objects</title>
...
...
@@ -99,7 +99,7 @@
<application>libpq</application> library.
</para>
<sect2>
<sect2
id='lo-create'
>
<title>Creating a Large Object</title>
<para>
...
...
@@ -158,7 +158,7 @@ inv_oid = lo_create(conn, desired_oid);
</para>
</sect2>
<sect2>
<sect2
id="lo-import"
>
<title>Importing a Large Object</title>
<para>
...
...
@@ -200,7 +200,7 @@ Oid lo_import_with_oid(PGconn *conn, const char *filename, Oid lobjId);
</para>
</sect2>
<sect2>
<sect2
id="lo-export"
>
<title>Exporting a Large Object</title>
<para>
...
...
@@ -218,7 +218,7 @@ int lo_export(PGconn *conn, Oid lobjId, const char *filename);
</para>
</sect2>
<sect2>
<sect2
id="lo-open"
>
<title>Opening an Existing Large Object</title>
<para>
...
...
@@ -268,7 +268,7 @@ inv_fd = lo_open(conn, inv_oid, INV_READ|INV_WRITE);
</para>
</sect2>
<sect2>
<sect2
id="lo-write"
>
<title>Writing Data to a Large Object</title>
<para>
...
...
@@ -286,7 +286,7 @@ int lo_write(PGconn *conn, int fd, const char *buf, size_t len);
</para>
</sect2>
<sect2>
<sect2
id="lo-read"
>
<title>Reading Data from a Large Object</title>
<para>
...
...
@@ -304,7 +304,7 @@ int lo_read(PGconn *conn, int fd, char *buf, size_t len);
</para>
</sect2>
<sect2>
<sect2
id="lo-seek"
>
<title>Seeking in a Large Object</title>
<para>
...
...
@@ -324,7 +324,7 @@ int lo_lseek(PGconn *conn, int fd, int offset, int whence);
</para>
</sect2>
<sect2>
<sect2
id="lo-tell"
>
<title>Obtaining the Seek Position of a Large Object</title>
<para>
...
...
@@ -338,7 +338,7 @@ int lo_tell(PGconn *conn, int fd);
</para>
</sect2>
<sect2>
<sect2
id="lo-truncate"
>
<title>Truncating a Large Object</title>
<para>
...
...
@@ -370,7 +370,7 @@ int lo_truncate(PGcon *conn, int fd, size_t len);
</para>
</sect2>
<sect2>
<sect2
id="lo-close"
>
<title>Closing a Large Object Descriptor</title>
<para>
...
...
@@ -390,7 +390,7 @@ int lo_close(PGconn *conn, int fd);
</para>
</sect2>
<sect2>
<sect2
id="lo-unlink"
>
<title>Removing a Large Object</title>
<para>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment