mirror of
https://github.com/yasuhirokimura/db18
synced 2026-06-08 18:29:23 +00:00
248 lines
9.1 KiB
HTML
248 lines
9.1 KiB
HTML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
<head>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||
<title>DB_STREAM->write()</title>
|
||
<link rel="stylesheet" href="apiReference.css" type="text/css" />
|
||
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
|
||
<link rel="start" href="index.html" title="Berkeley DB C API Reference" />
|
||
<link rel="up" href="blob.html" title="Chapter 13. External Files" />
|
||
<link rel="prev" href="dbstream_size.html" title="DB_STREAM->size()" />
|
||
<link rel="next" href="envget_blob_dir.html" title="DB_ENV->get_ext_file_dir()" />
|
||
</head>
|
||
<body>
|
||
<div xmlns="" class="navheader">
|
||
<div class="libver">
|
||
<p>Library Version 18.1.40</p>
|
||
</div>
|
||
<table width="100%" summary="Navigation header">
|
||
<tr>
|
||
<th colspan="3" align="center">
|
||
<span xmlns="http://www.w3.org/1999/xhtml">DB_STREAM->write()</span>
|
||
|
||
</th>
|
||
</tr>
|
||
<tr>
|
||
<td width="20%" align="left"><a accesskey="p" href="dbstream_size.html">Prev</a> </td>
|
||
<th width="60%" align="center">Chapter 13.
|
||
External Files
|
||
</th>
|
||
<td width="20%" align="right"> <a accesskey="n" href="envget_blob_dir.html">Next</a></td>
|
||
</tr>
|
||
</table>
|
||
<hr />
|
||
</div>
|
||
<div class="sect1" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h2 class="title" style="clear: both"><a id="dbstream_write"></a>
|
||
<span>DB_STREAM->write()</span>
|
||
|
||
</h2>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<pre class="programlisting">#include <db.h>
|
||
|
||
int
|
||
DB_STREAM->write(DB_STREAM *dbs, DBT *data, db_off_t offset,
|
||
u_int32_t flags); </pre>
|
||
<p>
|
||
The <code class="methodname">DB_STREAM->write()</code> method writes data
|
||
to an existing external file object in the database. This method
|
||
writes data contained in the <a class="link" href="dbt.html" title="Chapter 4. The DBT Handle">DBT</a>
|
||
<span class="bold"><strong>data</strong></span> to the external file stream.
|
||
Data is written into the stream starting at the position indicated by
|
||
<span class="bold"><strong>offset</strong></span>. The amount of data
|
||
written is determined by the <code class="literal">size</code> field in the
|
||
DBT.
|
||
</p>
|
||
<p>
|
||
If this method writes data in the middle of the external file, it will
|
||
overwrite existing data, instead of shifting it. If this method
|
||
writes data to the end of the external file, the data is appended to
|
||
the existing external file. You can determine how large an external
|
||
file is using <a class="xref" href="dbstream_size.html" title="DB_STREAM->size()">
|
||
<span>DB_STREAM->size()</span>
|
||
|
||
</a>.
|
||
</p>
|
||
<p>
|
||
To open a stream, use <a class="xref" href="dbstream.html" title="DBC->db_stream()">
|
||
<span>DBC->db_stream()</span>
|
||
|
||
</a>.
|
||
</p>
|
||
<p>
|
||
Unless otherwise specified, the
|
||
<code class="methodname">DB_STREAM->write()</code> <span>
|
||
<span>
|
||
method returns a non-zero error value on failure and 0 on success.
|
||
</span>
|
||
|
||
</span>
|
||
</p>
|
||
<div class="sect2" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h3 class="title"><a id="idm139753795459440"></a>Parameters</h3>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sect3" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h4 class="title"><a id="idm139753795430528"></a>data</h4>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>
|
||
The <span class="bold"><strong>data</strong></span> parameter is
|
||
the <a class="link" href="dbt.html" title="Chapter 4. The DBT Handle">DBT</a> containing the
|
||
data to be written to the external file. The amount of data
|
||
to be written is determined by the DBT's
|
||
<code class="literal">size</code> field.
|
||
</p>
|
||
</div>
|
||
<div class="sect3" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h4 class="title"><a id="idm139753795419504"></a>offset</h4>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>
|
||
The <span class="bold"><strong>offset</strong></span> parameter
|
||
identifies the position in the external file where the write
|
||
operation will begin.
|
||
</p>
|
||
</div>
|
||
<div class="sect3" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h4 class="title"><a id="idm139753795460832"></a>flags</h4>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>
|
||
The <span class="bold"><strong>flags</strong></span> parameter must be
|
||
set to 0 or the following value:
|
||
</p>
|
||
<div class="itemizedlist">
|
||
<ul type="disc">
|
||
<li>
|
||
<p><a id="blobstream_DB_STREAM_SYNC_WRITE"></a>
|
||
<code class="literal">DB_STREAM_SYNC_WRITE</code>
|
||
</p>
|
||
<p>
|
||
A sync to disk operation is performed on the
|
||
stream at the end of the write operation. By
|
||
default, the sync is performed only when the
|
||
stream is closed using <a class="xref" href="dbstream_close.html" title="DB_STREAM->close()">
|
||
<span>DB_STREAM->close()</span>
|
||
|
||
</a>. Note that
|
||
this flag can also be specified when the stream is
|
||
created using <a class="xref" href="dbstream.html" title="DBC->db_stream()">
|
||
<span>DBC->db_stream()</span>
|
||
|
||
</a>, in which case the sync
|
||
behavior becomes the default behavior for this
|
||
stream instance.
|
||
</p>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="sect2" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h3 class="title"><a id="idm139753795402656"></a>Errors</h3>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>
|
||
The <code class="methodname">DB_STREAM->write()</code> <span>
|
||
<span>
|
||
method may fail and return one of the following non-zero errors:
|
||
</span>
|
||
|
||
</span>
|
||
</p>
|
||
<div class="sect3" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h4 class="title"><a id="idm139753795411840"></a>EINVAL</h4>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>
|
||
An invalid flag value or parameter was specified; or if the
|
||
stream is read-only; or if the input DBT was
|
||
configured with
|
||
<a class="link" href="dbt.html#dbt_DB_DBT_PARTIAL">DB_DBT_PARTIAL</a>.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
<div class="sect2" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h3 class="title"><a id="idm139753795390704"></a>Class</h3>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>
|
||
<a class="link" href="blob.html" title="Chapter 13. External Files">DB_STREAM</a>
|
||
</p>
|
||
</div>
|
||
<div class="sect2" lang="en" xml:lang="en">
|
||
<div class="titlepage">
|
||
<div>
|
||
<div>
|
||
<h3 class="title"><a id="idm139753795388128"></a>See Also</h3>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<p>
|
||
<a class="xref" href="blob.html#bloblist" title="External Files and Related Methods">External Files and Related Methods</a>
|
||
</p>
|
||
</div>
|
||
</div>
|
||
<div class="navfooter">
|
||
<hr />
|
||
<table width="100%" summary="Navigation footer">
|
||
<tr>
|
||
<td width="40%" align="left"><a accesskey="p" href="dbstream_size.html">Prev</a> </td>
|
||
<td width="20%" align="center">
|
||
<a accesskey="u" href="blob.html">Up</a>
|
||
</td>
|
||
<td width="40%" align="right"> <a accesskey="n" href="envget_blob_dir.html">Next</a></td>
|
||
</tr>
|
||
<tr>
|
||
<td width="40%" align="left" valign="top">
|
||
<span>DB_STREAM->size()</span>
|
||
|
||
</td>
|
||
<td width="20%" align="center">
|
||
<a accesskey="h" href="index.html">Home</a>
|
||
</td>
|
||
<td width="40%" align="right" valign="top">
|
||
<span>DB_ENV->get_ext_file_dir()</span>
|
||
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</div>
|
||
</body>
|
||
</html>
|