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
|
<! "@(#)set_lorder.so 10.7 (Sleepycat) 10/27/98">
<!Copyright 1997, 1998 by Sleepycat Software, Inc. All rights reserved.>
<html>
<body bgcolor=white>
<head>
<title>Berkeley DB: DbEnv.set_lorder</title>
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
<meta name="keywords" content="embedded,database,programmatic,toolkit,b+tree,btr
ee,hash,hashing,transaction,transactions,locking,logging,access method,access me
thods,java,C,C++">
</head>
<h1>DbEnv.set_lorder</h1>
<hr size=1 noshade>
<tt>
<h3>
<pre>
import com.sleepycat.db.*;
<p>
public void set_lorder(int lorder);
</pre>
</h3>
<h1>Description</h1>
<p>
Set the byte order for integers in the stored database metadata.
The value specified should represent the order as an integer, for example,
big endian order is the number 4,321, and little endian order is the
number 1,234.
If no value is specified, the host order of the machine where the Berkeley DB
library was compiled is used.
<p>
The specified value is ignored except when databases are being created.
If a database already exists, the byte order it uses is determined when
the file is read.
<p>
<b>The access methods provide no guarantees about the byte ordering of the
application data stored in the database,
and applications are responsible for maintaining any necessary ordering.</b>
<p>
<h1>Class</h1>
<a href="../../api_java/DbEnv/class.html">DbEnv</a>
<p>
<h1>See Also</h1>
<a href="../../api_java/DbEnv/appinit.html">DbEnv.appinit</a>,
<a href="../../api_java/DbEnv/appexit.html">DbEnv.appexit</a>,
<a href="../../api_java/DbEnv/version.html">DbEnv.version</a>,
<a href="../../api_java/DbEnv/get_lg_info.html">DbEnv.get_lg_info</a>,
<a href="../../api_java/DbEnv/get_lk_info.html">DbEnv.get_lk_info</a>,
<a href="../../api_java/DbEnv/get_mp_info.html">DbEnv.get_mp_info</a>,
<a href="../../api_java/DbEnv/get_tx_info.html">DbEnv.get_tx_info</a>,
dbenv_set_data_dir,
<a href="../../api_java/DbEnv/set_errcall.html">DbEnv.set_errcall</a>,
<a href="../../api_java/DbEnv/set_error_stream.html">DbEnv.set_error_stream</a>,
<a href="../../api_java/DbEnv/set_errpfx.html">DbEnv.set_errpfx</a>,
<a href="../../api_java/DbEnv/set_lg_max.html">DbEnv.set_lg_max</a>,
<a href="../../api_java/DbEnv/set_lk_conflicts.html">DbEnv.set_lk_conflicts</a>,
<a href="../../api_java/DbEnv/set_lk_detect.html">DbEnv.set_lk_detect</a>,
<a href="../../api_java/DbEnv/set_lk_modes.html">DbEnv.set_lk_modes</a>,
DbEnv.set_lorder,
<a href="../../api_java/DbEnv/set_mp_mmapsize.html">DbEnv.set_mp_mmapsize</a>,
<a href="../../api_java/DbEnv/set_mp_size.html">DbEnv.set_mp_size</a>,
<a href="../../api_java/DbEnv/set_tx_max.html">DbEnv.set_tx_max</a>,
and
<a href="../../api_java/DbEnv/set_verbose.html">DbEnv.set_verbose</a>.
</tt>
</body>
</html>
|