pkgsrc/databases/db5/PLIST

5268 lines
312 KiB
Text
Raw Normal View History

@comment $NetBSD: PLIST,v 1.7 2012/05/31 09:37:20 adam Exp $
bin/db5_archive
bin/db5_checkpoint
bin/db5_deadlock
bin/db5_dump
bin/db5_hotbackup
bin/db5_load
bin/db5_log_verify
bin/db5_printlog
bin/db5_recover
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
bin/db5_replicate
bin/db5_stat
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
bin/db5_tuner
bin/db5_upgrade
bin/db5_verify
include/db5/db.h
include/db5/db_185.h
include/db5/db_cxx.h
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
lib/libdb5-5.3.la
lib/libdb5-5.so
lib/libdb5.a
lib/libdb5.so
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
lib/libdb5_cxx-5.3.la
lib/libdb5_cxx-5.so
lib/libdb5_cxx.a
lib/libdb5_cxx.so
share/doc/db5/api_reference/C/BDB-C_APIReference.pdf
share/doc/db5/api_reference/C/DB_MULTIPLE_INIT.html
share/doc/db5/api_reference/C/DB_MULTIPLE_KEY_NEXT.html
share/doc/db5/api_reference/C/DB_MULTIPLE_KEY_RESERVE_NEXT.html
share/doc/db5/api_reference/C/DB_MULTIPLE_KEY_WRITE_NEXT.html
share/doc/db5/api_reference/C/DB_MULTIPLE_NEXT.html
share/doc/db5/api_reference/C/DB_MULTIPLE_RECNO_NEXT.html
share/doc/db5/api_reference/C/DB_MULTIPLE_RECNO_RESERVE_NEXT.html
share/doc/db5/api_reference/C/DB_MULTIPLE_RECNO_WRITE_INIT.html
share/doc/db5/api_reference/C/DB_MULTIPLE_RECNO_WRITE_NEXT.html
share/doc/db5/api_reference/C/DB_MULTIPLE_RESERVE_NEXT.html
share/doc/db5/api_reference/C/DB_MULTIPLE_WRITE_INIT.html
share/doc/db5/api_reference/C/DB_MULTIPLE_WRITE_NEXT.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/add_data_dir_parameter.html
share/doc/db5/api_reference/C/apiReference.css
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/C/configuration_reference.html
share/doc/db5/api_reference/C/db.html
share/doc/db5/api_reference/C/db_archive.html
share/doc/db5/api_reference/C/db_checkpoint.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/db_copy.html
share/doc/db5/api_reference/C/db_deadlock.html
share/doc/db5/api_reference/C/db_dump.html
share/doc/db5/api_reference/C/db_env_set_func_close.html
share/doc/db5/api_reference/C/db_env_set_func_dirfree.html
share/doc/db5/api_reference/C/db_env_set_func_dirlist.html
share/doc/db5/api_reference/C/db_env_set_func_exists.html
share/doc/db5/api_reference/C/db_env_set_func_file_map.html
share/doc/db5/api_reference/C/db_env_set_func_free.html
share/doc/db5/api_reference/C/db_env_set_func_fsync.html
share/doc/db5/api_reference/C/db_env_set_func_ftruncate.html
share/doc/db5/api_reference/C/db_env_set_func_ioinfo.html
share/doc/db5/api_reference/C/db_env_set_func_malloc.html
share/doc/db5/api_reference/C/db_env_set_func_open.html
share/doc/db5/api_reference/C/db_env_set_func_pread.html
share/doc/db5/api_reference/C/db_env_set_func_pwrite.html
share/doc/db5/api_reference/C/db_env_set_func_read.html
share/doc/db5/api_reference/C/db_env_set_func_realloc.html
share/doc/db5/api_reference/C/db_env_set_func_region_map.html
share/doc/db5/api_reference/C/db_env_set_func_rename.html
share/doc/db5/api_reference/C/db_env_set_func_seek.html
share/doc/db5/api_reference/C/db_env_set_func_unlink.html
share/doc/db5/api_reference/C/db_env_set_func_write.html
share/doc/db5/api_reference/C/db_env_set_func_yield.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/db_heap_rid.html
share/doc/db5/api_reference/C/db_hotbackup.html
share/doc/db5/api_reference/C/db_load.html
share/doc/db5/api_reference/C/db_log_verify.html
share/doc/db5/api_reference/C/db_printlog.html
share/doc/db5/api_reference/C/db_recover.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/C/db_replicate.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/db_site.html
share/doc/db5/api_reference/C/db_sql_codegen.html
share/doc/db5/api_reference/C/db_stat.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/db_tuner.html
share/doc/db5/api_reference/C/db_upgrade.html
share/doc/db5/api_reference/C/db_verify.html
share/doc/db5/api_reference/C/dbassociate.html
share/doc/db5/api_reference/C/dbassociate_foreign.html
share/doc/db5/api_reference/C/dbc.html
share/doc/db5/api_reference/C/dbcclose.html
share/doc/db5/api_reference/C/dbccmp.html
share/doc/db5/api_reference/C/dbccount.html
share/doc/db5/api_reference/C/dbcdel.html
share/doc/db5/api_reference/C/dbcdup.html
share/doc/db5/api_reference/C/dbcget.html
share/doc/db5/api_reference/C/dbcget_priority.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/dbchannel_close.html
share/doc/db5/api_reference/C/dbchannel_send_msg.html
share/doc/db5/api_reference/C/dbchannel_send_request.html
share/doc/db5/api_reference/C/dbchannel_set_timeout.html
share/doc/db5/api_reference/C/dbclose.html
share/doc/db5/api_reference/C/dbcompact.html
share/doc/db5/api_reference/C/dbcput.html
share/doc/db5/api_reference/C/dbcreate.html
share/doc/db5/api_reference/C/dbcset_priority.html
share/doc/db5/api_reference/C/dbcursor.html
share/doc/db5/api_reference/C/dbdel.html
share/doc/db5/api_reference/C/dberr.html
share/doc/db5/api_reference/C/dbexists.html
share/doc/db5/api_reference/C/dbfd.html
share/doc/db5/api_reference/C/dbget.html
share/doc/db5/api_reference/C/dbget_bt_minkey.html
share/doc/db5/api_reference/C/dbget_byteswapped.html
share/doc/db5/api_reference/C/dbget_cachesize.html
share/doc/db5/api_reference/C/dbget_create_dir.html
share/doc/db5/api_reference/C/dbget_dbname.html
share/doc/db5/api_reference/C/dbget_encrypt_flags.html
share/doc/db5/api_reference/C/dbget_errfile.html
share/doc/db5/api_reference/C/dbget_errpfx.html
share/doc/db5/api_reference/C/dbget_flags.html
share/doc/db5/api_reference/C/dbget_h_ffactor.html
share/doc/db5/api_reference/C/dbget_h_nelem.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/C/dbget_heap_regionsize.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/dbget_heapsize.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/C/dbget_lk_exclusive.html
share/doc/db5/api_reference/C/dbget_lorder.html
share/doc/db5/api_reference/C/dbget_mpf.html
share/doc/db5/api_reference/C/dbget_msgfile.html
share/doc/db5/api_reference/C/dbget_multiple.html
share/doc/db5/api_reference/C/dbget_open_flags.html
share/doc/db5/api_reference/C/dbget_pagesize.html
share/doc/db5/api_reference/C/dbget_partition_callback.html
share/doc/db5/api_reference/C/dbget_partition_dirs.html
share/doc/db5/api_reference/C/dbget_partition_keys.html
share/doc/db5/api_reference/C/dbget_priority.html
share/doc/db5/api_reference/C/dbget_q_extentsize.html
share/doc/db5/api_reference/C/dbget_re_delim.html
share/doc/db5/api_reference/C/dbget_re_len.html
share/doc/db5/api_reference/C/dbget_re_pad.html
share/doc/db5/api_reference/C/dbget_re_source.html
share/doc/db5/api_reference/C/dbget_transactional.html
share/doc/db5/api_reference/C/dbget_type.html
share/doc/db5/api_reference/C/dbgetenv.html
share/doc/db5/api_reference/C/dbjoin.html
share/doc/db5/api_reference/C/dbkey_range.html
share/doc/db5/api_reference/C/dbm.html
share/doc/db5/api_reference/C/dbopen.html
share/doc/db5/api_reference/C/dbput.html
share/doc/db5/api_reference/C/dbremove.html
share/doc/db5/api_reference/C/dbrename.html
share/doc/db5/api_reference/C/dbset_alloc.html
share/doc/db5/api_reference/C/dbset_append_recno.html
share/doc/db5/api_reference/C/dbset_bt_compare.html
share/doc/db5/api_reference/C/dbset_bt_compress.html
share/doc/db5/api_reference/C/dbset_bt_minkey.html
share/doc/db5/api_reference/C/dbset_bt_prefix.html
share/doc/db5/api_reference/C/dbset_cachesize.html
share/doc/db5/api_reference/C/dbset_create_dir.html
share/doc/db5/api_reference/C/dbset_dup_compare.html
share/doc/db5/api_reference/C/dbset_encrypt.html
share/doc/db5/api_reference/C/dbset_errcall.html
share/doc/db5/api_reference/C/dbset_errfile.html
share/doc/db5/api_reference/C/dbset_errpfx.html
share/doc/db5/api_reference/C/dbset_feedback.html
share/doc/db5/api_reference/C/dbset_flags.html
share/doc/db5/api_reference/C/dbset_h_compare.html
share/doc/db5/api_reference/C/dbset_h_ffactor.html
share/doc/db5/api_reference/C/dbset_h_hash.html
share/doc/db5/api_reference/C/dbset_h_nelem.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/C/dbset_heap_regionsize.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/dbset_heapsize.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/C/dbset_lk_exclusive.html
share/doc/db5/api_reference/C/dbset_lorder.html
share/doc/db5/api_reference/C/dbset_msgcall.html
share/doc/db5/api_reference/C/dbset_msgfile.html
share/doc/db5/api_reference/C/dbset_pagesize.html
share/doc/db5/api_reference/C/dbset_partition.html
share/doc/db5/api_reference/C/dbset_partition_dirs.html
share/doc/db5/api_reference/C/dbset_priority.html
share/doc/db5/api_reference/C/dbset_q_extentsize.html
share/doc/db5/api_reference/C/dbset_re_delim.html
share/doc/db5/api_reference/C/dbset_re_len.html
share/doc/db5/api_reference/C/dbset_re_pad.html
share/doc/db5/api_reference/C/dbset_re_source.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/dbsite_close.html
share/doc/db5/api_reference/C/dbsite_get_address.html
share/doc/db5/api_reference/C/dbsite_get_config.html
share/doc/db5/api_reference/C/dbsite_get_eid.html
share/doc/db5/api_reference/C/dbsite_remove.html
share/doc/db5/api_reference/C/dbsite_set_config.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/C/dbsort_multiple.html
share/doc/db5/api_reference/C/dbsql.html
share/doc/db5/api_reference/C/dbstat.html
share/doc/db5/api_reference/C/dbstat_print.html
share/doc/db5/api_reference/C/dbsync.html
share/doc/db5/api_reference/C/dbt.html
share/doc/db5/api_reference/C/dbtruncate.html
share/doc/db5/api_reference/C/dbupgrade.html
share/doc/db5/api_reference/C/dbverify.html
share/doc/db5/api_reference/C/env.html
share/doc/db5/api_reference/C/envadd_data_dir.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/C/envbackup.html
share/doc/db5/api_reference/C/envcdsgroup_begin.html
share/doc/db5/api_reference/C/envclose.html
share/doc/db5/api_reference/C/envcreate.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/C/envdbbackup.html
share/doc/db5/api_reference/C/envdbremove.html
share/doc/db5/api_reference/C/envdbrename.html
share/doc/db5/api_reference/C/enverr.html
share/doc/db5/api_reference/C/envevent_notify.html
share/doc/db5/api_reference/C/envfailchk.html
share/doc/db5/api_reference/C/envfileid_reset.html
share/doc/db5/api_reference/C/envfullversion.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/C/envget_backup_callbacks.html
share/doc/db5/api_reference/C/envget_backup_config.html
share/doc/db5/api_reference/C/envget_cache_max.html
share/doc/db5/api_reference/C/envget_cachesize.html
share/doc/db5/api_reference/C/envget_create_dir.html
share/doc/db5/api_reference/C/envget_data_dirs.html
share/doc/db5/api_reference/C/envget_encrypt_flags.html
share/doc/db5/api_reference/C/envget_errfile.html
share/doc/db5/api_reference/C/envget_errpfx.html
share/doc/db5/api_reference/C/envget_flags.html
share/doc/db5/api_reference/C/envget_home.html
share/doc/db5/api_reference/C/envget_intermediate_dir_mode.html
share/doc/db5/api_reference/C/envget_lg_bsize.html
share/doc/db5/api_reference/C/envget_lg_dir.html
share/doc/db5/api_reference/C/envget_lg_filemode.html
share/doc/db5/api_reference/C/envget_lg_max.html
share/doc/db5/api_reference/C/envget_lg_regionmax.html
share/doc/db5/api_reference/C/envget_lk_conflicts.html
share/doc/db5/api_reference/C/envget_lk_detect.html
share/doc/db5/api_reference/C/envget_lk_max_lockers.html
share/doc/db5/api_reference/C/envget_lk_max_locks.html
share/doc/db5/api_reference/C/envget_lk_max_objects.html
share/doc/db5/api_reference/C/envget_lk_partitions.html
share/doc/db5/api_reference/C/envget_lk_priority.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/envget_lk_tablesize.html
share/doc/db5/api_reference/C/envget_memory_init.html
share/doc/db5/api_reference/C/envget_memory_max.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/C/envget_metadata_dir.html
share/doc/db5/api_reference/C/envget_mp_mmapsize.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/C/envget_mp_mtxcount.html
share/doc/db5/api_reference/C/envget_mp_pagesize.html
share/doc/db5/api_reference/C/envget_mp_tablesize.html
share/doc/db5/api_reference/C/envget_msgfile.html
share/doc/db5/api_reference/C/envget_open_flags.html
share/doc/db5/api_reference/C/envget_shm_key.html
share/doc/db5/api_reference/C/envget_thread_count.html
share/doc/db5/api_reference/C/envget_timeout.html
share/doc/db5/api_reference/C/envget_tmp_dir.html
share/doc/db5/api_reference/C/envget_tx_max.html
share/doc/db5/api_reference/C/envget_tx_timestamp.html
share/doc/db5/api_reference/C/envget_verbose.html
share/doc/db5/api_reference/C/envlog_get_config.html
share/doc/db5/api_reference/C/envlog_set_config.html
share/doc/db5/api_reference/C/envlog_verify.html
share/doc/db5/api_reference/C/envlsn_reset.html
share/doc/db5/api_reference/C/envopen.html
share/doc/db5/api_reference/C/envremove.html
share/doc/db5/api_reference/C/envset_alloc.html
share/doc/db5/api_reference/C/envset_app_dispatch.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/C/envset_backup_callbacks.html
share/doc/db5/api_reference/C/envset_backup_config.html
share/doc/db5/api_reference/C/envset_cache_max.html
share/doc/db5/api_reference/C/envset_cachesize.html
share/doc/db5/api_reference/C/envset_create_dir.html
share/doc/db5/api_reference/C/envset_data_dir.html
share/doc/db5/api_reference/C/envset_encrypt.html
share/doc/db5/api_reference/C/envset_errcall.html
share/doc/db5/api_reference/C/envset_errfile.html
share/doc/db5/api_reference/C/envset_errpfx.html
share/doc/db5/api_reference/C/envset_feedback.html
share/doc/db5/api_reference/C/envset_flags.html
share/doc/db5/api_reference/C/envset_intermediate_dir_mode.html
share/doc/db5/api_reference/C/envset_isalive.html
share/doc/db5/api_reference/C/envset_lg_bsize.html
share/doc/db5/api_reference/C/envset_lg_dir.html
share/doc/db5/api_reference/C/envset_lg_filemode.html
share/doc/db5/api_reference/C/envset_lg_max.html
share/doc/db5/api_reference/C/envset_lg_regionmax.html
share/doc/db5/api_reference/C/envset_lk_conflicts.html
share/doc/db5/api_reference/C/envset_lk_detect.html
share/doc/db5/api_reference/C/envset_lk_max_lockers.html
share/doc/db5/api_reference/C/envset_lk_max_locks.html
share/doc/db5/api_reference/C/envset_lk_max_objects.html
share/doc/db5/api_reference/C/envset_lk_partitions.html
share/doc/db5/api_reference/C/envset_lk_priority.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/envset_lk_tablesize.html
share/doc/db5/api_reference/C/envset_memory_init.html
share/doc/db5/api_reference/C/envset_memory_max.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/C/envset_metadata_dir.html
share/doc/db5/api_reference/C/envset_mp_mmapsize.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/C/envset_mp_mtxcount.html
share/doc/db5/api_reference/C/envset_mp_pagesize.html
share/doc/db5/api_reference/C/envset_mp_tablesize.html
share/doc/db5/api_reference/C/envset_msgcall.html
share/doc/db5/api_reference/C/envset_msgfile.html
share/doc/db5/api_reference/C/envset_shm_key.html
share/doc/db5/api_reference/C/envset_thread_count.html
share/doc/db5/api_reference/C/envset_thread_id.html
share/doc/db5/api_reference/C/envset_thread_id_string.html
share/doc/db5/api_reference/C/envset_timeout.html
share/doc/db5/api_reference/C/envset_tmp_dir.html
share/doc/db5/api_reference/C/envset_tx_max.html
share/doc/db5/api_reference/C/envset_tx_timestamp.html
share/doc/db5/api_reference/C/envset_verbose.html
share/doc/db5/api_reference/C/envstat.html
share/doc/db5/api_reference/C/envstrerror.html
share/doc/db5/api_reference/C/envtxn_applied.html
share/doc/db5/api_reference/C/envversion.html
share/doc/db5/api_reference/C/frame_index.html
share/doc/db5/api_reference/C/frame_main.html
share/doc/db5/api_reference/C/historic.html
share/doc/db5/api_reference/C/hsearch.html
share/doc/db5/api_reference/C/index.html
share/doc/db5/api_reference/C/introduction.html
share/doc/db5/api_reference/C/lock.html
share/doc/db5/api_reference/C/lockdetect.html
share/doc/db5/api_reference/C/lockget.html
share/doc/db5/api_reference/C/lockid.html
share/doc/db5/api_reference/C/lockid_free.html
share/doc/db5/api_reference/C/lockput.html
share/doc/db5/api_reference/C/lockstat.html
share/doc/db5/api_reference/C/lockstat_print.html
share/doc/db5/api_reference/C/lockvec.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/C/log_set_config_parameter.html
share/doc/db5/api_reference/C/logarchive.html
share/doc/db5/api_reference/C/logc.html
share/doc/db5/api_reference/C/logcclose.html
share/doc/db5/api_reference/C/logcget.html
share/doc/db5/api_reference/C/logcompare.html
share/doc/db5/api_reference/C/logcursor.html
share/doc/db5/api_reference/C/logfile.html
share/doc/db5/api_reference/C/logflush.html
share/doc/db5/api_reference/C/logprintf.html
share/doc/db5/api_reference/C/logput.html
share/doc/db5/api_reference/C/logstat.html
share/doc/db5/api_reference/C/logstat_print.html
share/doc/db5/api_reference/C/lsn.html
share/doc/db5/api_reference/C/memp.html
share/doc/db5/api_reference/C/mempfclose.html
share/doc/db5/api_reference/C/mempfcreate.html
share/doc/db5/api_reference/C/mempfget.html
share/doc/db5/api_reference/C/mempfopen.html
share/doc/db5/api_reference/C/mempfsync.html
share/doc/db5/api_reference/C/mempget_clear_len.html
share/doc/db5/api_reference/C/mempget_fileid.html
share/doc/db5/api_reference/C/mempget_flags.html
share/doc/db5/api_reference/C/mempget_ftype.html
share/doc/db5/api_reference/C/mempget_lsn_offset.html
share/doc/db5/api_reference/C/mempget_maxsize.html
share/doc/db5/api_reference/C/mempget_mp_max_openfd.html
share/doc/db5/api_reference/C/mempget_mp_max_write.html
share/doc/db5/api_reference/C/mempget_pgcookie.html
share/doc/db5/api_reference/C/mempget_priority.html
share/doc/db5/api_reference/C/mempput.html
share/doc/db5/api_reference/C/mempregister.html
share/doc/db5/api_reference/C/mempset_clear_len.html
share/doc/db5/api_reference/C/mempset_fileid.html
share/doc/db5/api_reference/C/mempset_flags.html
share/doc/db5/api_reference/C/mempset_ftype.html
share/doc/db5/api_reference/C/mempset_lsn_offset.html
share/doc/db5/api_reference/C/mempset_maxsize.html
share/doc/db5/api_reference/C/mempset_mp_max_openfd.html
share/doc/db5/api_reference/C/mempset_mp_max_write.html
share/doc/db5/api_reference/C/mempset_pgcookie.html
share/doc/db5/api_reference/C/mempset_priority.html
share/doc/db5/api_reference/C/mempstat.html
share/doc/db5/api_reference/C/mempstat_print.html
share/doc/db5/api_reference/C/mempsync.html
share/doc/db5/api_reference/C/memptrickle.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/C/moreinfo.html
share/doc/db5/api_reference/C/mutex.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/C/mutex_set_align_parameter.html
share/doc/db5/api_reference/C/mutex_set_increment_parameter.html
share/doc/db5/api_reference/C/mutex_set_max_parameter.html
share/doc/db5/api_reference/C/mutex_set_tas_spins_parameter.html
share/doc/db5/api_reference/C/mutexalloc.html
share/doc/db5/api_reference/C/mutexfree.html
share/doc/db5/api_reference/C/mutexget_align.html
share/doc/db5/api_reference/C/mutexget_increment.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/mutexget_init.html
share/doc/db5/api_reference/C/mutexget_max.html
share/doc/db5/api_reference/C/mutexget_tas_spins.html
share/doc/db5/api_reference/C/mutexlock.html
share/doc/db5/api_reference/C/mutexset_align.html
share/doc/db5/api_reference/C/mutexset_increment.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/mutexset_init.html
share/doc/db5/api_reference/C/mutexset_max.html
share/doc/db5/api_reference/C/mutexset_tas_spins.html
share/doc/db5/api_reference/C/mutexstat.html
share/doc/db5/api_reference/C/mutexstat_print.html
share/doc/db5/api_reference/C/mutexunlock.html
share/doc/db5/api_reference/C/preface.html
share/doc/db5/api_reference/C/rep.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/C/rep_set_clockskew_parameter.html
share/doc/db5/api_reference/C/rep_set_config_parameter.html
share/doc/db5/api_reference/C/rep_set_limit_parameter.html
share/doc/db5/api_reference/C/rep_set_nsites_parameter.html
share/doc/db5/api_reference/C/rep_set_priority_parameter.html
share/doc/db5/api_reference/C/rep_set_request_parameter.html
share/doc/db5/api_reference/C/rep_set_timeout_parameter.html
share/doc/db5/api_reference/C/repclockskew.html
share/doc/db5/api_reference/C/repconfig.html
share/doc/db5/api_reference/C/repelect.html
share/doc/db5/api_reference/C/repget_clockskew.html
share/doc/db5/api_reference/C/repget_config.html
share/doc/db5/api_reference/C/repget_limit.html
share/doc/db5/api_reference/C/repget_nsites.html
share/doc/db5/api_reference/C/repget_priority.html
share/doc/db5/api_reference/C/repget_request.html
share/doc/db5/api_reference/C/repget_timeout.html
share/doc/db5/api_reference/C/repmessage.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/repmgr_channel.html
share/doc/db5/api_reference/C/repmgr_local_site.html
share/doc/db5/api_reference/C/repmgr_msg_dispatch.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/C/repmgr_set_ack_policy_parameter.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/C/repmgr_site.html
share/doc/db5/api_reference/C/repmgr_site_by_eid.html
share/doc/db5/api_reference/C/repmgr_site_parameter.html
share/doc/db5/api_reference/C/repmgrget_ack_policy.html
share/doc/db5/api_reference/C/repmgrset_ack_policy.html
share/doc/db5/api_reference/C/repmgrsite_list.html
share/doc/db5/api_reference/C/repmgrstart.html
share/doc/db5/api_reference/C/repmgrstat.html
share/doc/db5/api_reference/C/repmgrstat_print.html
share/doc/db5/api_reference/C/repnsites.html
share/doc/db5/api_reference/C/reppriority.html
share/doc/db5/api_reference/C/repset_limit.html
share/doc/db5/api_reference/C/repset_request.html
share/doc/db5/api_reference/C/repset_timeout.html
share/doc/db5/api_reference/C/repstart.html
share/doc/db5/api_reference/C/repstat.html
share/doc/db5/api_reference/C/repstat_print.html
share/doc/db5/api_reference/C/repsync.html
share/doc/db5/api_reference/C/reptransport.html
share/doc/db5/api_reference/C/seq.html
share/doc/db5/api_reference/C/seqclose.html
share/doc/db5/api_reference/C/seqcreate.html
share/doc/db5/api_reference/C/seqget.html
share/doc/db5/api_reference/C/seqget_cachesize.html
share/doc/db5/api_reference/C/seqget_dbp.html
share/doc/db5/api_reference/C/seqget_flags.html
share/doc/db5/api_reference/C/seqget_key.html
share/doc/db5/api_reference/C/seqget_range.html
share/doc/db5/api_reference/C/seqinitial_value.html
share/doc/db5/api_reference/C/seqopen.html
share/doc/db5/api_reference/C/seqremove.html
share/doc/db5/api_reference/C/seqset_cachesize.html
share/doc/db5/api_reference/C/seqset_flags.html
share/doc/db5/api_reference/C/seqset_range.html
share/doc/db5/api_reference/C/seqstat.html
share/doc/db5/api_reference/C/seqstat_print.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/C/set_cache_max_parameter.html
share/doc/db5/api_reference/C/set_cachesize_parameter.html
share/doc/db5/api_reference/C/set_create_dir_parameter.html
share/doc/db5/api_reference/C/set_flags_parameter.html
share/doc/db5/api_reference/C/set_intermediate_dir_mode_parameter.html
share/doc/db5/api_reference/C/set_lg_bsize_parameter.html
share/doc/db5/api_reference/C/set_lg_dir_parameter.html
share/doc/db5/api_reference/C/set_lg_filemode_parameter.html
share/doc/db5/api_reference/C/set_lg_max_parameter.html
share/doc/db5/api_reference/C/set_lg_regionmax_parameter.html
share/doc/db5/api_reference/C/set_lk_detect_parameter.html
share/doc/db5/api_reference/C/set_lk_max_lockers_parameter.html
share/doc/db5/api_reference/C/set_lk_max_locks_parameter.html
share/doc/db5/api_reference/C/set_lk_max_objects_parameter.html
share/doc/db5/api_reference/C/set_lk_partitions_parameter.html
share/doc/db5/api_reference/C/set_mp_max_openfd_parameter.html
share/doc/db5/api_reference/C/set_mp_max_write_parameter.html
share/doc/db5/api_reference/C/set_mp_mmapsize_parameter.html
share/doc/db5/api_reference/C/set_open_flags_parameter.html
share/doc/db5/api_reference/C/set_shm_key_parameter.html
share/doc/db5/api_reference/C/set_thread_count_parameter.html
share/doc/db5/api_reference/C/set_timeout_parameter.html
share/doc/db5/api_reference/C/set_tmp_dir_parameter.html
share/doc/db5/api_reference/C/set_tx_max_parameter.html
share/doc/db5/api_reference/C/set_verbose_parameter.html
share/doc/db5/api_reference/C/setfunc.html
share/doc/db5/api_reference/C/sqlite3.html
share/doc/db5/api_reference/C/txn.html
share/doc/db5/api_reference/C/txnabort.html
share/doc/db5/api_reference/C/txnbegin.html
share/doc/db5/api_reference/C/txncheckpoint.html
share/doc/db5/api_reference/C/txncommit.html
share/doc/db5/api_reference/C/txndiscard.html
share/doc/db5/api_reference/C/txnget_name.html
share/doc/db5/api_reference/C/txnget_priority.html
share/doc/db5/api_reference/C/txnid.html
share/doc/db5/api_reference/C/txnprepare.html
share/doc/db5/api_reference/C/txnrecover.html
share/doc/db5/api_reference/C/txnset_commit_token.html
share/doc/db5/api_reference/C/txnset_name.html
share/doc/db5/api_reference/C/txnset_priority.html
share/doc/db5/api_reference/C/txnset_timeout.html
share/doc/db5/api_reference/C/txnstat.html
share/doc/db5/api_reference/C/txnstat_print.html
share/doc/db5/api_reference/C/utilities.html
share/doc/db5/api_reference/CXX/BDB-CXX_APIReference.pdf
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/add_data_dir_parameter.html
share/doc/db5/api_reference/CXX/apiReference.css
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/CXX/configuration_reference.html
share/doc/db5/api_reference/CXX/db.html
share/doc/db5/api_reference/CXX/db_archive.html
share/doc/db5/api_reference/CXX/db_checkpoint.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/db_copy.html
share/doc/db5/api_reference/CXX/db_deadlock.html
share/doc/db5/api_reference/CXX/db_dump.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/db_heap_rid.html
share/doc/db5/api_reference/CXX/db_hotbackup.html
share/doc/db5/api_reference/CXX/db_load.html
share/doc/db5/api_reference/CXX/db_log_verify.html
share/doc/db5/api_reference/CXX/db_printlog.html
share/doc/db5/api_reference/CXX/db_recover.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/CXX/db_replicate.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/db_site.html
share/doc/db5/api_reference/CXX/db_sql_codegen.html
share/doc/db5/api_reference/CXX/db_stat.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/db_tuner.html
share/doc/db5/api_reference/CXX/db_upgrade.html
share/doc/db5/api_reference/CXX/db_verify.html
share/doc/db5/api_reference/CXX/dbassociate.html
share/doc/db5/api_reference/CXX/dbassociate_foreign.html
share/doc/db5/api_reference/CXX/dbc.html
share/doc/db5/api_reference/CXX/dbcclose.html
share/doc/db5/api_reference/CXX/dbccmp.html
share/doc/db5/api_reference/CXX/dbccount.html
share/doc/db5/api_reference/CXX/dbcdel.html
share/doc/db5/api_reference/CXX/dbcdup.html
share/doc/db5/api_reference/CXX/dbcget.html
share/doc/db5/api_reference/CXX/dbcget_priority.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/dbchannel_close.html
share/doc/db5/api_reference/CXX/dbchannel_send_msg.html
share/doc/db5/api_reference/CXX/dbchannel_send_request.html
share/doc/db5/api_reference/CXX/dbchannel_set_timeout.html
share/doc/db5/api_reference/CXX/dbclose.html
share/doc/db5/api_reference/CXX/dbcompact.html
share/doc/db5/api_reference/CXX/dbcput.html
share/doc/db5/api_reference/CXX/dbcreate.html
share/doc/db5/api_reference/CXX/dbcset_priority.html
share/doc/db5/api_reference/CXX/dbcursor.html
share/doc/db5/api_reference/CXX/dbdeadlock.html
share/doc/db5/api_reference/CXX/dbdel.html
share/doc/db5/api_reference/CXX/dberr.html
share/doc/db5/api_reference/CXX/dbexception.html
share/doc/db5/api_reference/CXX/dbexists.html
share/doc/db5/api_reference/CXX/dbfd.html
share/doc/db5/api_reference/CXX/dbget.html
share/doc/db5/api_reference/CXX/dbget_bt_minkey.html
share/doc/db5/api_reference/CXX/dbget_byteswapped.html
share/doc/db5/api_reference/CXX/dbget_cachesize.html
share/doc/db5/api_reference/CXX/dbget_create_dir.html
share/doc/db5/api_reference/CXX/dbget_dbname.html
share/doc/db5/api_reference/CXX/dbget_encrypt_flags.html
share/doc/db5/api_reference/CXX/dbget_errfile.html
share/doc/db5/api_reference/CXX/dbget_errpfx.html
share/doc/db5/api_reference/CXX/dbget_flags.html
share/doc/db5/api_reference/CXX/dbget_h_ffactor.html
share/doc/db5/api_reference/CXX/dbget_h_nelem.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/CXX/dbget_heap_regionsize.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/dbget_heapsize.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/CXX/dbget_lk_exclusive.html
share/doc/db5/api_reference/CXX/dbget_lorder.html
share/doc/db5/api_reference/CXX/dbget_mpf.html
share/doc/db5/api_reference/CXX/dbget_msgfile.html
share/doc/db5/api_reference/CXX/dbget_multiple.html
share/doc/db5/api_reference/CXX/dbget_open_flags.html
share/doc/db5/api_reference/CXX/dbget_pagesize.html
share/doc/db5/api_reference/CXX/dbget_partition_callback.html
share/doc/db5/api_reference/CXX/dbget_partition_dirs.html
share/doc/db5/api_reference/CXX/dbget_partition_keys.html
share/doc/db5/api_reference/CXX/dbget_priority.html
share/doc/db5/api_reference/CXX/dbget_q_extentsize.html
share/doc/db5/api_reference/CXX/dbget_re_delim.html
share/doc/db5/api_reference/CXX/dbget_re_len.html
share/doc/db5/api_reference/CXX/dbget_re_pad.html
share/doc/db5/api_reference/CXX/dbget_re_source.html
share/doc/db5/api_reference/CXX/dbget_transactional.html
share/doc/db5/api_reference/CXX/dbget_type.html
share/doc/db5/api_reference/CXX/dbgetenv.html
share/doc/db5/api_reference/CXX/dbjoin.html
share/doc/db5/api_reference/CXX/dbkey_range.html
share/doc/db5/api_reference/CXX/dblocknotgranted.html
share/doc/db5/api_reference/CXX/dbmemory.html
share/doc/db5/api_reference/CXX/dbmultiplebuilder.html
share/doc/db5/api_reference/CXX/dbmultipledatabuilder.html
share/doc/db5/api_reference/CXX/dbmultipledataiterator.html
share/doc/db5/api_reference/CXX/dbmultipleiterator.html
share/doc/db5/api_reference/CXX/dbmultiplekeydatabuilder.html
share/doc/db5/api_reference/CXX/dbmultiplekeydataiterator.html
share/doc/db5/api_reference/CXX/dbmultiplerecnodatabuilder.html
share/doc/db5/api_reference/CXX/dbmultiplerecnodataiterator.html
share/doc/db5/api_reference/CXX/dbopen.html
share/doc/db5/api_reference/CXX/dbput.html
share/doc/db5/api_reference/CXX/dbremove.html
share/doc/db5/api_reference/CXX/dbrename.html
share/doc/db5/api_reference/CXX/dbrephandledead.html
share/doc/db5/api_reference/CXX/dbrunrecovery.html
share/doc/db5/api_reference/CXX/dbset_alloc.html
share/doc/db5/api_reference/CXX/dbset_append_recno.html
share/doc/db5/api_reference/CXX/dbset_bt_compare.html
share/doc/db5/api_reference/CXX/dbset_bt_compress.html
share/doc/db5/api_reference/CXX/dbset_bt_minkey.html
share/doc/db5/api_reference/CXX/dbset_bt_prefix.html
share/doc/db5/api_reference/CXX/dbset_cachesize.html
share/doc/db5/api_reference/CXX/dbset_create_dir.html
share/doc/db5/api_reference/CXX/dbset_dup_compare.html
share/doc/db5/api_reference/CXX/dbset_encrypt.html
share/doc/db5/api_reference/CXX/dbset_errcall.html
share/doc/db5/api_reference/CXX/dbset_errfile.html
share/doc/db5/api_reference/CXX/dbset_error_stream.html
share/doc/db5/api_reference/CXX/dbset_errpfx.html
share/doc/db5/api_reference/CXX/dbset_feedback.html
share/doc/db5/api_reference/CXX/dbset_flags.html
share/doc/db5/api_reference/CXX/dbset_h_compare.html
share/doc/db5/api_reference/CXX/dbset_h_ffactor.html
share/doc/db5/api_reference/CXX/dbset_h_hash.html
share/doc/db5/api_reference/CXX/dbset_h_nelem.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/CXX/dbset_heap_regionsize.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/dbset_heapsize.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/CXX/dbset_lk_exclusive.html
share/doc/db5/api_reference/CXX/dbset_lorder.html
share/doc/db5/api_reference/CXX/dbset_message_stream.html
share/doc/db5/api_reference/CXX/dbset_msgcall.html
share/doc/db5/api_reference/CXX/dbset_msgfile.html
share/doc/db5/api_reference/CXX/dbset_pagesize.html
share/doc/db5/api_reference/CXX/dbset_partition.html
share/doc/db5/api_reference/CXX/dbset_partition_dirs.html
share/doc/db5/api_reference/CXX/dbset_priority.html
share/doc/db5/api_reference/CXX/dbset_q_extentsize.html
share/doc/db5/api_reference/CXX/dbset_re_delim.html
share/doc/db5/api_reference/CXX/dbset_re_len.html
share/doc/db5/api_reference/CXX/dbset_re_pad.html
share/doc/db5/api_reference/CXX/dbset_re_source.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/dbsite_close.html
share/doc/db5/api_reference/CXX/dbsite_get_address.html
share/doc/db5/api_reference/CXX/dbsite_get_config.html
share/doc/db5/api_reference/CXX/dbsite_get_eid.html
share/doc/db5/api_reference/CXX/dbsite_remove.html
share/doc/db5/api_reference/CXX/dbsite_set_config.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/CXX/dbsort_multiple.html
share/doc/db5/api_reference/CXX/dbsql.html
share/doc/db5/api_reference/CXX/dbstat.html
share/doc/db5/api_reference/CXX/dbstat_print.html
share/doc/db5/api_reference/CXX/dbsync.html
share/doc/db5/api_reference/CXX/dbt.html
share/doc/db5/api_reference/CXX/dbtruncate.html
share/doc/db5/api_reference/CXX/dbupgrade.html
share/doc/db5/api_reference/CXX/dbverify.html
share/doc/db5/api_reference/CXX/env.html
share/doc/db5/api_reference/CXX/envadd_data_dir.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/CXX/envbackup.html
share/doc/db5/api_reference/CXX/envcdsgroup_begin.html
share/doc/db5/api_reference/CXX/envclose.html
share/doc/db5/api_reference/CXX/envcreate.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/CXX/envdbbackup.html
share/doc/db5/api_reference/CXX/envdbremove.html
share/doc/db5/api_reference/CXX/envdbrename.html
share/doc/db5/api_reference/CXX/enverr.html
share/doc/db5/api_reference/CXX/envevent_notify.html
share/doc/db5/api_reference/CXX/envfailchk.html
share/doc/db5/api_reference/CXX/envfileid_reset.html
share/doc/db5/api_reference/CXX/envfullversion.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/CXX/envget_backup_callbacks.html
share/doc/db5/api_reference/CXX/envget_backup_config.html
share/doc/db5/api_reference/CXX/envget_cache_max.html
share/doc/db5/api_reference/CXX/envget_cachesize.html
share/doc/db5/api_reference/CXX/envget_create_dir.html
share/doc/db5/api_reference/CXX/envget_data_dirs.html
share/doc/db5/api_reference/CXX/envget_encrypt_flags.html
share/doc/db5/api_reference/CXX/envget_errfile.html
share/doc/db5/api_reference/CXX/envget_errpfx.html
share/doc/db5/api_reference/CXX/envget_flags.html
share/doc/db5/api_reference/CXX/envget_home.html
share/doc/db5/api_reference/CXX/envget_intermediate_dir_mode.html
share/doc/db5/api_reference/CXX/envget_lg_bsize.html
share/doc/db5/api_reference/CXX/envget_lg_dir.html
share/doc/db5/api_reference/CXX/envget_lg_filemode.html
share/doc/db5/api_reference/CXX/envget_lg_max.html
share/doc/db5/api_reference/CXX/envget_lg_regionmax.html
share/doc/db5/api_reference/CXX/envget_lk_conflicts.html
share/doc/db5/api_reference/CXX/envget_lk_detect.html
share/doc/db5/api_reference/CXX/envget_lk_max_lockers.html
share/doc/db5/api_reference/CXX/envget_lk_max_locks.html
share/doc/db5/api_reference/CXX/envget_lk_max_objects.html
share/doc/db5/api_reference/CXX/envget_lk_partitions.html
share/doc/db5/api_reference/CXX/envget_lk_priority.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/envget_lk_tablesize.html
share/doc/db5/api_reference/CXX/envget_memory_init.html
share/doc/db5/api_reference/CXX/envget_memory_max.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/CXX/envget_metadata_dir.html
share/doc/db5/api_reference/CXX/envget_mp_mmapsize.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/CXX/envget_mp_mtxcount.html
share/doc/db5/api_reference/CXX/envget_mp_pagesize.html
share/doc/db5/api_reference/CXX/envget_mp_tablesize.html
share/doc/db5/api_reference/CXX/envget_msgfile.html
share/doc/db5/api_reference/CXX/envget_open_flags.html
share/doc/db5/api_reference/CXX/envget_shm_key.html
share/doc/db5/api_reference/CXX/envget_thread_count.html
share/doc/db5/api_reference/CXX/envget_timeout.html
share/doc/db5/api_reference/CXX/envget_tmp_dir.html
share/doc/db5/api_reference/CXX/envget_tx_max.html
share/doc/db5/api_reference/CXX/envget_tx_timestamp.html
share/doc/db5/api_reference/CXX/envget_verbose.html
share/doc/db5/api_reference/CXX/envlog_get_config.html
share/doc/db5/api_reference/CXX/envlog_set_config.html
share/doc/db5/api_reference/CXX/envlog_verify.html
share/doc/db5/api_reference/CXX/envlsn_reset.html
share/doc/db5/api_reference/CXX/envopen.html
share/doc/db5/api_reference/CXX/envremove.html
share/doc/db5/api_reference/CXX/envset_alloc.html
share/doc/db5/api_reference/CXX/envset_app_dispatch.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/CXX/envset_backup_callbacks.html
share/doc/db5/api_reference/CXX/envset_backup_config.html
share/doc/db5/api_reference/CXX/envset_cache_max.html
share/doc/db5/api_reference/CXX/envset_cachesize.html
share/doc/db5/api_reference/CXX/envset_create_dir.html
share/doc/db5/api_reference/CXX/envset_data_dir.html
share/doc/db5/api_reference/CXX/envset_encrypt.html
share/doc/db5/api_reference/CXX/envset_errcall.html
share/doc/db5/api_reference/CXX/envset_errfile.html
share/doc/db5/api_reference/CXX/envset_error_stream.html
share/doc/db5/api_reference/CXX/envset_errpfx.html
share/doc/db5/api_reference/CXX/envset_feedback.html
share/doc/db5/api_reference/CXX/envset_flags.html
share/doc/db5/api_reference/CXX/envset_intermediate_dir_mode.html
share/doc/db5/api_reference/CXX/envset_isalive.html
share/doc/db5/api_reference/CXX/envset_lg_bsize.html
share/doc/db5/api_reference/CXX/envset_lg_dir.html
share/doc/db5/api_reference/CXX/envset_lg_filemode.html
share/doc/db5/api_reference/CXX/envset_lg_max.html
share/doc/db5/api_reference/CXX/envset_lg_regionmax.html
share/doc/db5/api_reference/CXX/envset_lk_conflicts.html
share/doc/db5/api_reference/CXX/envset_lk_detect.html
share/doc/db5/api_reference/CXX/envset_lk_max_lockers.html
share/doc/db5/api_reference/CXX/envset_lk_max_locks.html
share/doc/db5/api_reference/CXX/envset_lk_max_objects.html
share/doc/db5/api_reference/CXX/envset_lk_partitions.html
share/doc/db5/api_reference/CXX/envset_lk_priority.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/envset_lk_tablesize.html
share/doc/db5/api_reference/CXX/envset_memory_init.html
share/doc/db5/api_reference/CXX/envset_memory_max.html
share/doc/db5/api_reference/CXX/envset_message_stream.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/api_reference/CXX/envset_metadata_dir.html
share/doc/db5/api_reference/CXX/envset_mp_mmapsize.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/CXX/envset_mp_mtxcount.html
share/doc/db5/api_reference/CXX/envset_mp_pagesize.html
share/doc/db5/api_reference/CXX/envset_mp_tablesize.html
share/doc/db5/api_reference/CXX/envset_msgcall.html
share/doc/db5/api_reference/CXX/envset_msgfile.html
share/doc/db5/api_reference/CXX/envset_shm_key.html
share/doc/db5/api_reference/CXX/envset_thread_count.html
share/doc/db5/api_reference/CXX/envset_thread_id.html
share/doc/db5/api_reference/CXX/envset_thread_id_string.html
share/doc/db5/api_reference/CXX/envset_timeout.html
share/doc/db5/api_reference/CXX/envset_tmp_dir.html
share/doc/db5/api_reference/CXX/envset_tx_max.html
share/doc/db5/api_reference/CXX/envset_tx_timestamp.html
share/doc/db5/api_reference/CXX/envset_verbose.html
share/doc/db5/api_reference/CXX/envstat.html
share/doc/db5/api_reference/CXX/envstrerror.html
share/doc/db5/api_reference/CXX/envtxn_applied.html
share/doc/db5/api_reference/CXX/envversion.html
share/doc/db5/api_reference/CXX/frame_index.html
share/doc/db5/api_reference/CXX/frame_main.html
share/doc/db5/api_reference/CXX/index.html
share/doc/db5/api_reference/CXX/introduction.html
share/doc/db5/api_reference/CXX/lock.html
share/doc/db5/api_reference/CXX/lockdetect.html
share/doc/db5/api_reference/CXX/lockget.html
share/doc/db5/api_reference/CXX/lockid.html
share/doc/db5/api_reference/CXX/lockid_free.html
share/doc/db5/api_reference/CXX/lockput.html
share/doc/db5/api_reference/CXX/lockstat.html
share/doc/db5/api_reference/CXX/lockstat_print.html
share/doc/db5/api_reference/CXX/lockvec.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/CXX/log_set_config_parameter.html
share/doc/db5/api_reference/CXX/logarchive.html
share/doc/db5/api_reference/CXX/logc.html
share/doc/db5/api_reference/CXX/logcclose.html
share/doc/db5/api_reference/CXX/logcget.html
share/doc/db5/api_reference/CXX/logcompare.html
share/doc/db5/api_reference/CXX/logcursor.html
share/doc/db5/api_reference/CXX/logfile.html
share/doc/db5/api_reference/CXX/logflush.html
share/doc/db5/api_reference/CXX/logprintf.html
share/doc/db5/api_reference/CXX/logput.html
share/doc/db5/api_reference/CXX/logstat.html
share/doc/db5/api_reference/CXX/logstat_print.html
share/doc/db5/api_reference/CXX/lsn.html
share/doc/db5/api_reference/CXX/memp.html
share/doc/db5/api_reference/CXX/mempfclose.html
share/doc/db5/api_reference/CXX/mempfcreate.html
share/doc/db5/api_reference/CXX/mempfget.html
share/doc/db5/api_reference/CXX/mempfopen.html
share/doc/db5/api_reference/CXX/mempfsync.html
share/doc/db5/api_reference/CXX/mempget_clear_len.html
share/doc/db5/api_reference/CXX/mempget_fileid.html
share/doc/db5/api_reference/CXX/mempget_flags.html
share/doc/db5/api_reference/CXX/mempget_ftype.html
share/doc/db5/api_reference/CXX/mempget_lsn_offset.html
share/doc/db5/api_reference/CXX/mempget_maxsize.html
share/doc/db5/api_reference/CXX/mempget_mp_max_openfd.html
share/doc/db5/api_reference/CXX/mempget_mp_max_write.html
share/doc/db5/api_reference/CXX/mempget_pgcookie.html
share/doc/db5/api_reference/CXX/mempget_priority.html
share/doc/db5/api_reference/CXX/mempput.html
share/doc/db5/api_reference/CXX/mempregister.html
share/doc/db5/api_reference/CXX/mempset_clear_len.html
share/doc/db5/api_reference/CXX/mempset_fileid.html
share/doc/db5/api_reference/CXX/mempset_flags.html
share/doc/db5/api_reference/CXX/mempset_ftype.html
share/doc/db5/api_reference/CXX/mempset_lsn_offset.html
share/doc/db5/api_reference/CXX/mempset_maxsize.html
share/doc/db5/api_reference/CXX/mempset_mp_max_openfd.html
share/doc/db5/api_reference/CXX/mempset_mp_max_write.html
share/doc/db5/api_reference/CXX/mempset_pgcookie.html
share/doc/db5/api_reference/CXX/mempset_priority.html
share/doc/db5/api_reference/CXX/mempstat.html
share/doc/db5/api_reference/CXX/mempstat_print.html
share/doc/db5/api_reference/CXX/mempsync.html
share/doc/db5/api_reference/CXX/memptrickle.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/CXX/moreinfo.html
share/doc/db5/api_reference/CXX/mutex.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/CXX/mutex_set_align_parameter.html
share/doc/db5/api_reference/CXX/mutex_set_increment_parameter.html
share/doc/db5/api_reference/CXX/mutex_set_max_parameter.html
share/doc/db5/api_reference/CXX/mutex_set_tas_spins_parameter.html
share/doc/db5/api_reference/CXX/mutexalloc.html
share/doc/db5/api_reference/CXX/mutexfree.html
share/doc/db5/api_reference/CXX/mutexget_align.html
share/doc/db5/api_reference/CXX/mutexget_increment.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/mutexget_init.html
share/doc/db5/api_reference/CXX/mutexget_max.html
share/doc/db5/api_reference/CXX/mutexget_tas_spins.html
share/doc/db5/api_reference/CXX/mutexlock.html
share/doc/db5/api_reference/CXX/mutexset_align.html
share/doc/db5/api_reference/CXX/mutexset_increment.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/mutexset_init.html
share/doc/db5/api_reference/CXX/mutexset_max.html
share/doc/db5/api_reference/CXX/mutexset_tas_spins.html
share/doc/db5/api_reference/CXX/mutexstat.html
share/doc/db5/api_reference/CXX/mutexstat_print.html
share/doc/db5/api_reference/CXX/mutexunlock.html
share/doc/db5/api_reference/CXX/preface.html
share/doc/db5/api_reference/CXX/rep.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/CXX/rep_set_clockskew_parameter.html
share/doc/db5/api_reference/CXX/rep_set_config_parameter.html
share/doc/db5/api_reference/CXX/rep_set_limit_parameter.html
share/doc/db5/api_reference/CXX/rep_set_nsites_parameter.html
share/doc/db5/api_reference/CXX/rep_set_priority_parameter.html
share/doc/db5/api_reference/CXX/rep_set_request_parameter.html
share/doc/db5/api_reference/CXX/rep_set_timeout_parameter.html
share/doc/db5/api_reference/CXX/repclockskew.html
share/doc/db5/api_reference/CXX/repconfig.html
share/doc/db5/api_reference/CXX/repelect.html
share/doc/db5/api_reference/CXX/repget_clockskew.html
share/doc/db5/api_reference/CXX/repget_config.html
share/doc/db5/api_reference/CXX/repget_limit.html
share/doc/db5/api_reference/CXX/repget_nsites.html
share/doc/db5/api_reference/CXX/repget_priority.html
share/doc/db5/api_reference/CXX/repget_request.html
share/doc/db5/api_reference/CXX/repget_timeout.html
share/doc/db5/api_reference/CXX/repmessage.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/repmgr_channel.html
share/doc/db5/api_reference/CXX/repmgr_local_site.html
share/doc/db5/api_reference/CXX/repmgr_msg_dispatch.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/CXX/repmgr_set_ack_policy_parameter.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/api_reference/CXX/repmgr_site.html
share/doc/db5/api_reference/CXX/repmgr_site_by_eid.html
share/doc/db5/api_reference/CXX/repmgr_site_parameter.html
share/doc/db5/api_reference/CXX/repmgrget_ack_policy.html
share/doc/db5/api_reference/CXX/repmgrset_ack_policy.html
share/doc/db5/api_reference/CXX/repmgrsite_list.html
share/doc/db5/api_reference/CXX/repmgrstart.html
share/doc/db5/api_reference/CXX/repmgrstat.html
share/doc/db5/api_reference/CXX/repmgrstat_print.html
share/doc/db5/api_reference/CXX/repnsites.html
share/doc/db5/api_reference/CXX/reppriority.html
share/doc/db5/api_reference/CXX/repset_limit.html
share/doc/db5/api_reference/CXX/repset_request.html
share/doc/db5/api_reference/CXX/repset_timeout.html
share/doc/db5/api_reference/CXX/repstart.html
share/doc/db5/api_reference/CXX/repstat.html
share/doc/db5/api_reference/CXX/repstat_print.html
share/doc/db5/api_reference/CXX/repsync.html
share/doc/db5/api_reference/CXX/reptransport.html
share/doc/db5/api_reference/CXX/seq.html
share/doc/db5/api_reference/CXX/seqclose.html
share/doc/db5/api_reference/CXX/seqcreate.html
share/doc/db5/api_reference/CXX/seqget.html
share/doc/db5/api_reference/CXX/seqget_cachesize.html
share/doc/db5/api_reference/CXX/seqget_dbp.html
share/doc/db5/api_reference/CXX/seqget_flags.html
share/doc/db5/api_reference/CXX/seqget_key.html
share/doc/db5/api_reference/CXX/seqget_range.html
share/doc/db5/api_reference/CXX/seqinitial_value.html
share/doc/db5/api_reference/CXX/seqopen.html
share/doc/db5/api_reference/CXX/seqremove.html
share/doc/db5/api_reference/CXX/seqset_cachesize.html
share/doc/db5/api_reference/CXX/seqset_flags.html
share/doc/db5/api_reference/CXX/seqset_range.html
share/doc/db5/api_reference/CXX/seqstat.html
share/doc/db5/api_reference/CXX/seqstat_print.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/CXX/set_cache_max_parameter.html
share/doc/db5/api_reference/CXX/set_cachesize_parameter.html
share/doc/db5/api_reference/CXX/set_create_dir_parameter.html
share/doc/db5/api_reference/CXX/set_flags_parameter.html
share/doc/db5/api_reference/CXX/set_intermediate_dir_mode_parameter.html
share/doc/db5/api_reference/CXX/set_lg_bsize_parameter.html
share/doc/db5/api_reference/CXX/set_lg_dir_parameter.html
share/doc/db5/api_reference/CXX/set_lg_filemode_parameter.html
share/doc/db5/api_reference/CXX/set_lg_max_parameter.html
share/doc/db5/api_reference/CXX/set_lg_regionmax_parameter.html
share/doc/db5/api_reference/CXX/set_lk_detect_parameter.html
share/doc/db5/api_reference/CXX/set_lk_max_lockers_parameter.html
share/doc/db5/api_reference/CXX/set_lk_max_locks_parameter.html
share/doc/db5/api_reference/CXX/set_lk_max_objects_parameter.html
share/doc/db5/api_reference/CXX/set_lk_partitions_parameter.html
share/doc/db5/api_reference/CXX/set_mp_max_openfd_parameter.html
share/doc/db5/api_reference/CXX/set_mp_max_write_parameter.html
share/doc/db5/api_reference/CXX/set_mp_mmapsize_parameter.html
share/doc/db5/api_reference/CXX/set_open_flags_parameter.html
share/doc/db5/api_reference/CXX/set_shm_key_parameter.html
share/doc/db5/api_reference/CXX/set_thread_count_parameter.html
share/doc/db5/api_reference/CXX/set_timeout_parameter.html
share/doc/db5/api_reference/CXX/set_tmp_dir_parameter.html
share/doc/db5/api_reference/CXX/set_tx_max_parameter.html
share/doc/db5/api_reference/CXX/set_verbose_parameter.html
share/doc/db5/api_reference/CXX/sqlite3.html
share/doc/db5/api_reference/CXX/txn.html
share/doc/db5/api_reference/CXX/txnabort.html
share/doc/db5/api_reference/CXX/txnbegin.html
share/doc/db5/api_reference/CXX/txncheckpoint.html
share/doc/db5/api_reference/CXX/txncommit.html
share/doc/db5/api_reference/CXX/txndiscard.html
share/doc/db5/api_reference/CXX/txnget_name.html
share/doc/db5/api_reference/CXX/txnget_priority.html
share/doc/db5/api_reference/CXX/txnid.html
share/doc/db5/api_reference/CXX/txnprepare.html
share/doc/db5/api_reference/CXX/txnrecover.html
share/doc/db5/api_reference/CXX/txnset_commit_token.html
share/doc/db5/api_reference/CXX/txnset_name.html
share/doc/db5/api_reference/CXX/txnset_priority.html
share/doc/db5/api_reference/CXX/txnset_timeout.html
share/doc/db5/api_reference/CXX/txnstat.html
share/doc/db5/api_reference/CXX/txnstat_print.html
share/doc/db5/api_reference/CXX/utilities.html
share/doc/db5/api_reference/STL/BDB-STL_APIReference.pdf
share/doc/db5/api_reference/STL/BulkRetrievalOption.html
share/doc/db5/api_reference/STL/DbstlDbt.html
share/doc/db5/api_reference/STL/DbstlElemTraits.html
share/doc/db5/api_reference/STL/DbstlException.html
share/doc/db5/api_reference/STL/ElementHolder.html
share/doc/db5/api_reference/STL/ElementRef.html
share/doc/db5/api_reference/STL/Element_wrappers.html
share/doc/db5/api_reference/STL/Exception_classes_group.html
share/doc/db5/api_reference/STL/FailedAssertionException.html
share/doc/db5/api_reference/STL/InvalidArgumentException.html
share/doc/db5/api_reference/STL/InvalidCursorException.html
share/doc/db5/api_reference/STL/InvalidDbtException.html
share/doc/db5/api_reference/STL/InvalidFunctionCall.html
share/doc/db5/api_reference/STL/InvalidIteratorException.html
share/doc/db5/api_reference/STL/NoSuchKeyException.html
share/doc/db5/api_reference/STL/NotEnoughMemoryException.html
share/doc/db5/api_reference/STL/NotSupportedException.html
share/doc/db5/api_reference/STL/ReadModifyWriteOption.html
share/doc/db5/api_reference/STL/apiReference.css
share/doc/db5/api_reference/STL/db_base_iterator.html
share/doc/db5/api_reference/STL/db_container.html
share/doc/db5/api_reference/STL/db_map.html
share/doc/db5/api_reference/STL/db_map_base_iterator.html
share/doc/db5/api_reference/STL/db_map_iterator.html
share/doc/db5/api_reference/STL/db_map_iterators.html
share/doc/db5/api_reference/STL/db_multimap.html
share/doc/db5/api_reference/STL/db_multiset.html
share/doc/db5/api_reference/STL/db_reverse_iterator.html
share/doc/db5/api_reference/STL/db_set.html
share/doc/db5/api_reference/STL/db_set_base_iterator.html
share/doc/db5/api_reference/STL/db_set_iterator.html
share/doc/db5/api_reference/STL/db_vector.html
share/doc/db5/api_reference/STL/db_vector_base_iterator.html
share/doc/db5/api_reference/STL/db_vector_iterator.html
share/doc/db5/api_reference/STL/db_vector_iterators.html
share/doc/db5/api_reference/STL/dbset_iterators.html
share/doc/db5/api_reference/STL/dbstl_containers.html
share/doc/db5/api_reference/STL/dbstl_global_functions.html
share/doc/db5/api_reference/STL/dbstl_helper_classes.html
share/doc/db5/api_reference/STL/dbstl_iterators.html
share/doc/db5/api_reference/STL/frame_index.html
share/doc/db5/api_reference/STL/frame_main.html
share/doc/db5/api_reference/STL/index.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/api_reference/STL/moreinfo.html
share/doc/db5/api_reference/STL/preface.html
share/doc/db5/api_reference/STL/stlBulkRetrievalOptionbulk_buf_size.html
share/doc/db5/api_reference/STL/stlBulkRetrievalOptionbulk_retrieval.html
share/doc/db5/api_reference/STL/stlBulkRetrievalOptionno_bulk_retrieval.html
share/doc/db5/api_reference/STL/stlBulkRetrievalOptionoperator_assign.html
share/doc/db5/api_reference/STL/stlBulkRetrievalOptionoperator_eq.html
share/doc/db5/api_reference/STL/stlDbstlDbtdstr_DbstlDbt.html
share/doc/db5/api_reference/STL/stlDbstlDbtoperator_assign.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsDbstlElemTraits.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitscompare.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitscopy.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsdstr_DbstlElemTraits.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitseof.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitseq.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitseq_int_type.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsfind.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsget_assign_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsget_compare_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsget_copy_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsget_restore_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsget_sequence_compare_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsget_sequence_copy_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsget_sequence_len_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsget_sequence_n_compare_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsget_size_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsinstance.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitslength.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitslt.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsmove.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsnot_eof.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsset_assign_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsset_compare_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsset_copy_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsset_restore_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsset_sequence_compare_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsset_sequence_copy_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsset_sequence_len_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsset_sequence_n_compare_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsset_size_function.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsto_char_type.html
share/doc/db5/api_reference/STL/stlDbstlElemTraitsto_int_type.html
share/doc/db5/api_reference/STL/stlDbstlExceptiondstr_DbstlException.html
share/doc/db5/api_reference/STL/stlDbstlExceptionoperator_assign.html
share/doc/db5/api_reference/STL/stlElementHolder_DB_STL_StoreElement.html
share/doc/db5/api_reference/STL/stlElementHolder_DB_STL_value.html
share/doc/db5/api_reference/STL/stlElementHolderdstr_ElementHolder.html
share/doc/db5/api_reference/STL/stlElementHolderoperator__aa.html
share/doc/db5/api_reference/STL/stlElementHolderoperator__ma.html
share/doc/db5/api_reference/STL/stlElementHolderoperator_assign.html
share/doc/db5/api_reference/STL/stlElementHolderoperator_da.html
share/doc/db5/api_reference/STL/stlElementHolderoperator_decr.html
share/doc/db5/api_reference/STL/stlElementHolderoperator_gt_ge.html
share/doc/db5/api_reference/STL/stlElementHolderoperator_ia.html
share/doc/db5/api_reference/STL/stlElementHolderoperator_incr.html
share/doc/db5/api_reference/STL/stlElementHolderoperator_lt_le.html
share/doc/db5/api_reference/STL/stlElementHolderoperator_modasg.html
share/doc/db5/api_reference/STL/stlElementHolderoperator_oa.html
share/doc/db5/api_reference/STL/stlElementHolderoperator_ptype.html
share/doc/db5/api_reference/STL/stlElementHolderoperator_sa.html
share/doc/db5/api_reference/STL/stlElementHolderoperator_xa.html
share/doc/db5/api_reference/STL/stlElementRefElementRef.html
share/doc/db5/api_reference/STL/stlElementRef_DB_STL_StoreElement.html
share/doc/db5/api_reference/STL/stlElementRef_DB_STL_value.html
share/doc/db5/api_reference/STL/stlElementRefoperator_assign.html
share/doc/db5/api_reference/STL/stlFailedAssertionExceptionFailedAssertionException.html
share/doc/db5/api_reference/STL/stlFailedAssertionExceptiondstr_FailedAssertionException.html
share/doc/db5/api_reference/STL/stlReadModifyWriteOptionno_read_modify_write.html
share/doc/db5/api_reference/STL/stlReadModifyWriteOptionoperator_eq.html
share/doc/db5/api_reference/STL/stlReadModifyWriteOptionread_modify_write.html
share/doc/db5/api_reference/STL/stldb_base_iteratorclose_cursor.html
share/doc/db5/api_reference/STL/stldb_base_iteratordb_base_iterator.html
share/doc/db5/api_reference/STL/stldb_base_iteratordstr_db_base_iterator.html
share/doc/db5/api_reference/STL/stldb_base_iteratorget_bulk_bufsize.html
share/doc/db5/api_reference/STL/stldb_base_iteratorget_bulk_retrieval.html
share/doc/db5/api_reference/STL/stldb_base_iteratoris_directdb_get.html
share/doc/db5/api_reference/STL/stldb_base_iteratoris_rmw.html
share/doc/db5/api_reference/STL/stldb_base_iteratoroperator_assign.html
share/doc/db5/api_reference/STL/stldb_base_iteratorset_bulk_buffer.html
share/doc/db5/api_reference/STL/stldb_containerdb_container.html
share/doc/db5/api_reference/STL/stldb_containerdstr_db_container.html
share/doc/db5/api_reference/STL/stldb_containerget_commit_flags.html
share/doc/db5/api_reference/STL/stldb_containerget_cursor_open_flags.html
share/doc/db5/api_reference/STL/stldb_containerget_db_env_handle.html
share/doc/db5/api_reference/STL/stldb_containerget_db_handle.html
share/doc/db5/api_reference/STL/stldb_containerget_db_set_flags.html
share/doc/db5/api_reference/STL/stldb_containerget_txn_begin_flags.html
share/doc/db5/api_reference/STL/stldb_containerset_all_flags.html
share/doc/db5/api_reference/STL/stldb_containerset_commit_flags.html
share/doc/db5/api_reference/STL/stldb_containerset_cursor_open_flags.html
share/doc/db5/api_reference/STL/stldb_containerset_db_handle.html
share/doc/db5/api_reference/STL/stldb_containerset_txn_begin_flags.html
share/doc/db5/api_reference/STL/stldb_map_base_iteratorclose_cursor.html
share/doc/db5/api_reference/STL/stldb_map_base_iteratordstr_db_map_base_iterator.html
share/doc/db5/api_reference/STL/stldb_map_base_iteratorget_bulk_bufsize.html
share/doc/db5/api_reference/STL/stldb_map_base_iteratormove_to.html
share/doc/db5/api_reference/STL/stldb_map_base_iteratoroperator__star.html
share/doc/db5/api_reference/STL/stldb_map_base_iteratoroperator_arrow.html
share/doc/db5/api_reference/STL/stldb_map_base_iteratoroperator_assign.html
share/doc/db5/api_reference/STL/stldb_map_base_iteratoroperator_decr.html
share/doc/db5/api_reference/STL/stldb_map_base_iteratoroperator_eq.html
share/doc/db5/api_reference/STL/stldb_map_base_iteratoroperator_incr.html
share/doc/db5/api_reference/STL/stldb_map_base_iteratoroperator_ueq.html
share/doc/db5/api_reference/STL/stldb_map_base_iteratorrefresh.html
share/doc/db5/api_reference/STL/stldb_map_base_iteratorset_bulk_buffer.html
share/doc/db5/api_reference/STL/stldb_map_iteratordstr_db_map_iterator.html
share/doc/db5/api_reference/STL/stldb_map_iteratoroperator__star.html
share/doc/db5/api_reference/STL/stldb_map_iteratoroperator_arrow.html
share/doc/db5/api_reference/STL/stldb_map_iteratoroperator_assign.html
share/doc/db5/api_reference/STL/stldb_map_iteratoroperator_decr.html
share/doc/db5/api_reference/STL/stldb_map_iteratoroperator_incr.html
share/doc/db5/api_reference/STL/stldb_map_iteratorrefresh.html
share/doc/db5/api_reference/STL/stldb_mapbegin.html
share/doc/db5/api_reference/STL/stldb_mapbucket_count.html
share/doc/db5/api_reference/STL/stldb_mapclear.html
share/doc/db5/api_reference/STL/stldb_mapcount.html
share/doc/db5/api_reference/STL/stldb_mapdstr_db_map.html
share/doc/db5/api_reference/STL/stldb_mapempty.html
share/doc/db5/api_reference/STL/stldb_mapend.html
share/doc/db5/api_reference/STL/stldb_mapequal_range.html
share/doc/db5/api_reference/STL/stldb_maperase.html
share/doc/db5/api_reference/STL/stldb_mapfind.html
share/doc/db5/api_reference/STL/stldb_maphash_funct.html
share/doc/db5/api_reference/STL/stldb_mapinsert.html
share/doc/db5/api_reference/STL/stldb_mapis_hash.html
share/doc/db5/api_reference/STL/stldb_mapkey_comp.html
share/doc/db5/api_reference/STL/stldb_mapkey_eq.html
share/doc/db5/api_reference/STL/stldb_maplower_bound.html
share/doc/db5/api_reference/STL/stldb_mapmax_size.html
share/doc/db5/api_reference/STL/stldb_mapoperator_assign.html
share/doc/db5/api_reference/STL/stldb_mapoperator_eq.html
share/doc/db5/api_reference/STL/stldb_mapoperator_sqbrk.html
share/doc/db5/api_reference/STL/stldb_mapoperator_ueq.html
share/doc/db5/api_reference/STL/stldb_maprbegin.html
share/doc/db5/api_reference/STL/stldb_maprend.html
share/doc/db5/api_reference/STL/stldb_mapsize.html
share/doc/db5/api_reference/STL/stldb_mapswap.html
share/doc/db5/api_reference/STL/stldb_mapupper_bound.html
share/doc/db5/api_reference/STL/stldb_mapvalue_comp.html
share/doc/db5/api_reference/STL/stldb_multimapcount.html
share/doc/db5/api_reference/STL/stldb_multimapdb_multimap.html
share/doc/db5/api_reference/STL/stldb_multimapdstr_db_multimap.html
share/doc/db5/api_reference/STL/stldb_multimapequal_range.html
share/doc/db5/api_reference/STL/stldb_multimapequal_range_N.html
share/doc/db5/api_reference/STL/stldb_multimaperase.html
share/doc/db5/api_reference/STL/stldb_multimapoperator_assign.html
share/doc/db5/api_reference/STL/stldb_multimapoperator_eq.html
share/doc/db5/api_reference/STL/stldb_multimapoperator_ueq.html
share/doc/db5/api_reference/STL/stldb_multimapswap.html
share/doc/db5/api_reference/STL/stldb_multimapupper_bound.html
share/doc/db5/api_reference/STL/stldb_multisetdstr_db_multiset.html
share/doc/db5/api_reference/STL/stldb_multiseterase.html
share/doc/db5/api_reference/STL/stldb_multisetinsert.html
share/doc/db5/api_reference/STL/stldb_multisetoperator_assign.html
share/doc/db5/api_reference/STL/stldb_multisetoperator_eq.html
share/doc/db5/api_reference/STL/stldb_multisetoperator_ueq.html
share/doc/db5/api_reference/STL/stldb_multisetswap.html
share/doc/db5/api_reference/STL/stldb_reverse_iteratordb_reverse_iterator.html
share/doc/db5/api_reference/STL/stldb_reverse_iteratoroperator_add.html
share/doc/db5/api_reference/STL/stldb_reverse_iteratoroperator_assign.html
share/doc/db5/api_reference/STL/stldb_reverse_iteratoroperator_decr.html
share/doc/db5/api_reference/STL/stldb_reverse_iteratoroperator_ge.html
share/doc/db5/api_reference/STL/stldb_reverse_iteratoroperator_gt.html
share/doc/db5/api_reference/STL/stldb_reverse_iteratoroperator_ia.html
share/doc/db5/api_reference/STL/stldb_reverse_iteratoroperator_le.html
share/doc/db5/api_reference/STL/stldb_reverse_iteratoroperator_lt.html
share/doc/db5/api_reference/STL/stldb_reverse_iteratoroperator_sa.html
share/doc/db5/api_reference/STL/stldb_reverse_iteratoroperator_sqbrk.html
share/doc/db5/api_reference/STL/stldb_reverse_iteratoroperator_sub.html
share/doc/db5/api_reference/STL/stldb_set_base_iteratordb_set_base_iterator.html
share/doc/db5/api_reference/STL/stldb_set_base_iteratoroperator__star.html
share/doc/db5/api_reference/STL/stldb_set_base_iteratoroperator_arrow.html
share/doc/db5/api_reference/STL/stldb_set_base_iteratoroperator_decr.html
share/doc/db5/api_reference/STL/stldb_set_base_iteratoroperator_incr.html
share/doc/db5/api_reference/STL/stldb_set_base_iteratorrefresh.html
share/doc/db5/api_reference/STL/stldb_set_iteratordb_set_iterator.html
share/doc/db5/api_reference/STL/stldb_set_iteratoroperator__star.html
share/doc/db5/api_reference/STL/stldb_set_iteratoroperator_arrow.html
share/doc/db5/api_reference/STL/stldb_set_iteratoroperator_decr.html
share/doc/db5/api_reference/STL/stldb_set_iteratoroperator_incr.html
share/doc/db5/api_reference/STL/stldb_set_iteratorrefresh.html
share/doc/db5/api_reference/STL/stldb_setdstr_db_set.html
share/doc/db5/api_reference/STL/stldb_setinsert.html
share/doc/db5/api_reference/STL/stldb_setoperator_assign.html
share/doc/db5/api_reference/STL/stldb_setoperator_eq.html
share/doc/db5/api_reference/STL/stldb_setoperator_ueq.html
share/doc/db5/api_reference/STL/stldb_setswap.html
share/doc/db5/api_reference/STL/stldb_setvalue_comp.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratorclose_cursor.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratordstr_db_vector_base_iterator.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratorget_bulk_bufsize.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratorget_current_index.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratormove_to.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator__star.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_add.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_arrow.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_assign.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_decr.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_eq.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_ge.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_gt.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_ia.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_incr.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_le.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_lt.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_sa.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_sqbrk.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_sub.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratoroperator_ueq.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratorrefresh.html
share/doc/db5/api_reference/STL/stldb_vector_base_iteratorset_bulk_buffer.html
share/doc/db5/api_reference/STL/stldb_vector_iteratordstr_db_vector_iterator.html
share/doc/db5/api_reference/STL/stldb_vector_iteratoroperator__star.html
share/doc/db5/api_reference/STL/stldb_vector_iteratoroperator_add.html
share/doc/db5/api_reference/STL/stldb_vector_iteratoroperator_arrow.html
share/doc/db5/api_reference/STL/stldb_vector_iteratoroperator_assign.html
share/doc/db5/api_reference/STL/stldb_vector_iteratoroperator_decr.html
share/doc/db5/api_reference/STL/stldb_vector_iteratoroperator_ia.html
share/doc/db5/api_reference/STL/stldb_vector_iteratoroperator_incr.html
share/doc/db5/api_reference/STL/stldb_vector_iteratoroperator_sa.html
share/doc/db5/api_reference/STL/stldb_vector_iteratoroperator_sqbrk.html
share/doc/db5/api_reference/STL/stldb_vector_iteratoroperator_sub.html
share/doc/db5/api_reference/STL/stldb_vector_iteratorrefresh.html
share/doc/db5/api_reference/STL/stldb_vectorassign.html
share/doc/db5/api_reference/STL/stldb_vectorat.html
share/doc/db5/api_reference/STL/stldb_vectorback.html
share/doc/db5/api_reference/STL/stldb_vectorcapacity.html
share/doc/db5/api_reference/STL/stldb_vectorclear.html
share/doc/db5/api_reference/STL/stldb_vectordb_vector.html
share/doc/db5/api_reference/STL/stldb_vectordstr_db_vector.html
share/doc/db5/api_reference/STL/stldb_vectorempty.html
share/doc/db5/api_reference/STL/stldb_vectorend.html
share/doc/db5/api_reference/STL/stldb_vectorerase.html
share/doc/db5/api_reference/STL/stldb_vectorfront.html
share/doc/db5/api_reference/STL/stldb_vectorinsert.html
share/doc/db5/api_reference/STL/stldb_vectormax_size.html
share/doc/db5/api_reference/STL/stldb_vectormerge.html
share/doc/db5/api_reference/STL/stldb_vectoroperator_assign.html
share/doc/db5/api_reference/STL/stldb_vectoroperator_eq.html
share/doc/db5/api_reference/STL/stldb_vectoroperator_lt.html
share/doc/db5/api_reference/STL/stldb_vectoroperator_sqbrk.html
share/doc/db5/api_reference/STL/stldb_vectoroperator_ueq.html
share/doc/db5/api_reference/STL/stldb_vectorpop_back.html
share/doc/db5/api_reference/STL/stldb_vectorpop_front.html
share/doc/db5/api_reference/STL/stldb_vectorpush_back.html
share/doc/db5/api_reference/STL/stldb_vectorpush_front.html
share/doc/db5/api_reference/STL/stldb_vectorrbegin.html
share/doc/db5/api_reference/STL/stldb_vectorremove.html
share/doc/db5/api_reference/STL/stldb_vectorremove_if.html
share/doc/db5/api_reference/STL/stldb_vectorrend.html
share/doc/db5/api_reference/STL/stldb_vectorreserve.html
share/doc/db5/api_reference/STL/stldb_vectorresize.html
share/doc/db5/api_reference/STL/stldb_vectorreverse.html
share/doc/db5/api_reference/STL/stldb_vectorsize.html
share/doc/db5/api_reference/STL/stldb_vectorsort.html
share/doc/db5/api_reference/STL/stldb_vectorsplice.html
share/doc/db5/api_reference/STL/stldb_vectorswap.html
share/doc/db5/api_reference/STL/stldb_vectorunique.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsabort_txn.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsalloc_mutex.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsbegin_txn.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsclose_all_db_envs.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsclose_all_dbs.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsclose_db_cursors.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsclose_db_env.html
share/doc/db5/api_reference/STL/stldbstl_global_functionscommit_txn.html
share/doc/db5/api_reference/STL/stldbstl_global_functionscurrent_txn.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsdbstl_exit.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsdbstl_startup.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsdbstl_thread_exit.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsfree_mutex.html
share/doc/db5/api_reference/STL/stldbstl_global_functionslock_mutex.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsopen_db.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsopen_env.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsoperator_eq.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsregister_db.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsregister_db_env.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsset_current_txn_handle.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsset_global_dbfile_suffix_number.html
share/doc/db5/api_reference/STL/stldbstl_global_functionsunlock_mutex.html
share/doc/db5/api_reference/TCL/BDB-TCL_APIReference.pdf
share/doc/db5/api_reference/TCL/apiReference.css
share/doc/db5/api_reference/TCL/db_close.html
share/doc/db5/api_reference/TCL/db_count.html
share/doc/db5/api_reference/TCL/db_cursor.html
share/doc/db5/api_reference/TCL/db_del.html
share/doc/db5/api_reference/TCL/db_get.html
share/doc/db5/api_reference/TCL/db_get_join.html
share/doc/db5/api_reference/TCL/db_get_type.html
share/doc/db5/api_reference/TCL/db_is_byteswapped.html
share/doc/db5/api_reference/TCL/db_join.html
share/doc/db5/api_reference/TCL/db_open.html
share/doc/db5/api_reference/TCL/db_put.html
share/doc/db5/api_reference/TCL/db_remove.html
share/doc/db5/api_reference/TCL/db_rename.html
share/doc/db5/api_reference/TCL/db_stat.html
share/doc/db5/api_reference/TCL/db_sync.html
share/doc/db5/api_reference/TCL/db_truncate.html
share/doc/db5/api_reference/TCL/dbc_close.html
share/doc/db5/api_reference/TCL/dbc_cmp.html
share/doc/db5/api_reference/TCL/dbc_del.html
share/doc/db5/api_reference/TCL/dbc_dup.html
share/doc/db5/api_reference/TCL/dbc_get.html
share/doc/db5/api_reference/TCL/dbc_put.html
share/doc/db5/api_reference/TCL/env_close.html
share/doc/db5/api_reference/TCL/env_dbremove.html
share/doc/db5/api_reference/TCL/env_dbrename.html
share/doc/db5/api_reference/TCL/env_open.html
share/doc/db5/api_reference/TCL/env_remove.html
share/doc/db5/api_reference/TCL/frame_index.html
share/doc/db5/api_reference/TCL/frame_main.html
share/doc/db5/api_reference/TCL/index.html
share/doc/db5/api_reference/TCL/preface.html
share/doc/db5/api_reference/TCL/tclapi.html
share/doc/db5/api_reference/TCL/txn.html
share/doc/db5/api_reference/TCL/txn_abort.html
share/doc/db5/api_reference/TCL/txn_checkpoint.html
share/doc/db5/api_reference/TCL/txn_commit.html
share/doc/db5/api_reference/TCL/version.html
share/doc/db5/articles/inmemory/C/InMemoryDBApplication.pdf
share/doc/db5/articles/inmemory/C/gettingStarted.css
share/doc/db5/articles/inmemory/C/index.html
Changes 5.2.36: * Updated the JDBC version shipped with Berkeley DB to support Oracle Java Embedded Client. * Fixed several memory leaks in the Online Backup API. * Fix a bug in the SQL API when using a blob field with a lot of content and multiple concurrent connections to the database. * Update EID_MASTER to be public static final so that it will be exposed in Java docs. * Fixed a bug where BFile module crashes when using BFile handle for SQL expressions interface on 64 bit platforms. * Fixed a bug where, on systems without FTRUNCATE, db_verify will return an error for truncated heap databases. * Let ADO.NET solution building skip SQLite Designer and Linq by default. * Fixed a bug that could cause BDB to run out of avaliable mutexes when renaming many databases. * Fixed a bug where the metadata page in hash databases would not be flushed to disk. * Fixed a bug where printlog would fail on in-memory heap databases. * Fixed a bug that would cause verify to call the wrong compare function if there are user defined compare functions used and the database has multilevel off page sorted duplicate trees. * Fixed a bug where two processes accessing the same table and one of those drops the table and recreates, the second process can crash. * Fixed a bug where it was possible to panic a heap database without an error message being printed. * Fixed a bug where it would fail to put records with overflow keys into hash duplicate database. * Fixed a bug where multiple Replication Manager processes would sometimes not all conform to replication-group-aware log archiving. * more...
2011-10-03 12:54:45 +02:00
share/doc/db5/articles/mssgtxt/DBMessageTextReference.pdf
share/doc/db5/articles/mssgtxt/gettingStarted.css
share/doc/db5/articles/mssgtxt/index.html
share/doc/db5/bdb-sql/BDB-SQL-Guide.pdf
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/bdb-sql/accessing_bdb_sql_databases.title.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/bdb-sql/addedpragmas.html
share/doc/db5/bdb-sql/admin.html
share/doc/db5/bdb-sql/bdb-concepts.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/bdb-sql/bfile-c.html
share/doc/db5/bdb-sql/bfile-extension.html
share/doc/db5/bdb-sql/bfile-sql.html
share/doc/db5/bdb-sql/buildinstall.html
share/doc/db5/bdb-sql/changedpragmas.html
share/doc/db5/bdb-sql/datamigration.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/bdb-sql/dbfeatures.html
share/doc/db5/bdb-sql/dbsqlbasics.html
share/doc/db5/bdb-sql/gettingStarted.css
share/doc/db5/bdb-sql/index.html
share/doc/db5/bdb-sql/journaldirectory.html
share/doc/db5/bdb-sql/lockhandling.html
share/doc/db5/bdb-sql/lockingnotes.html
share/doc/db5/bdb-sql/miscdiff.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/bdb-sql/moreinfo.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/bdb-sql/mvcc.html
share/doc/db5/bdb-sql/normal-sql.html
share/doc/db5/bdb-sql/preface.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/bdb-sql/rep_usageexamples.html
share/doc/db5/bdb-sql/reppragma.html
share/doc/db5/bdb-sql/repstatistics.html
share/doc/db5/bdb-sql/selectpage_size.html
share/doc/db5/bdb-sql/sequencesupport.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/bdb-sql/sql_encryption.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/bdb-sql/sqlrep.html
share/doc/db5/bdb-sql/sync.html
share/doc/db5/bdb-sql/unsupportedpragmas.html
share/doc/db5/collections/tutorial/BasicProgram.html
share/doc/db5/collections/tutorial/BerkeleyDB-Java-Collections.pdf
share/doc/db5/collections/tutorial/Entity.html
share/doc/db5/collections/tutorial/SerializableEntity.html
share/doc/db5/collections/tutorial/SerializedObjectStorage.html
share/doc/db5/collections/tutorial/Summary.html
share/doc/db5/collections/tutorial/Tuple.html
share/doc/db5/collections/tutorial/UsingCollectionsAPI.html
share/doc/db5/collections/tutorial/UsingSecondaries.html
share/doc/db5/collections/tutorial/UsingStoredCollections.html
share/doc/db5/collections/tutorial/addingdatabaseitems.html
share/doc/db5/collections/tutorial/collectionOverview.html
share/doc/db5/collections/tutorial/collectionswithentities.html
share/doc/db5/collections/tutorial/createbindingscollections.html
share/doc/db5/collections/tutorial/creatingentitybindings.html
share/doc/db5/collections/tutorial/developing.html
share/doc/db5/collections/tutorial/entitieswithcollections.html
share/doc/db5/collections/tutorial/gettingStarted.css
share/doc/db5/collections/tutorial/handlingexceptions.html
share/doc/db5/collections/tutorial/implementingmain.html
share/doc/db5/collections/tutorial/index.html
share/doc/db5/collections/tutorial/indexedcollections.html
share/doc/db5/collections/tutorial/intro.html
share/doc/db5/collections/tutorial/moreinfo.html
share/doc/db5/collections/tutorial/openclasscatalog.html
share/doc/db5/collections/tutorial/opendatabases.html
share/doc/db5/collections/tutorial/opendbenvironment.html
share/doc/db5/collections/tutorial/openingforeignkeys.html
share/doc/db5/collections/tutorial/preface.html
share/doc/db5/collections/tutorial/removingredundantvalueclasses.html
share/doc/db5/collections/tutorial/retrievingbyindexkey.html
share/doc/db5/collections/tutorial/retrievingdatabaseitems.html
share/doc/db5/collections/tutorial/sortedcollections.html
share/doc/db5/collections/tutorial/transientfieldsinbinding.html
share/doc/db5/collections/tutorial/tuple-serialentitybindings.html
share/doc/db5/collections/tutorial/tuplekeybindings.html
share/doc/db5/collections/tutorial/tupleswithkeycreators.html
share/doc/db5/collections/tutorial/tutorialintroduction.html
share/doc/db5/collections/tutorial/usingtransactions.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/BerkeleyDB.chm
share/doc/db5/csharp/CloseSearch.png
share/doc/db5/csharp/CollapseAll.bmp
share/doc/db5/csharp/Collapsed.gif
share/doc/db5/csharp/ExpandAll.bmp
share/doc/db5/csharp/Expanded.gif
share/doc/db5/csharp/FillNode.aspx
share/doc/db5/csharp/Index.aspx
share/doc/db5/csharp/Index.gif
share/doc/db5/csharp/Index.html
share/doc/db5/csharp/Item.gif
share/doc/db5/csharp/LoadIndexKeywords.aspx
share/doc/db5/csharp/Search.gif
share/doc/db5/csharp/SearchHelp.aspx
share/doc/db5/csharp/Splitter.gif
share/doc/db5/csharp/SyncTOC.gif
share/doc/db5/csharp/TOC.css
share/doc/db5/csharp/TOC.js
share/doc/db5/csharp/Web.Config
share/doc/db5/csharp/WebKI.xml
share/doc/db5/csharp/WebTOC.xml
share/doc/db5/csharp/fti/FTI_100.bin
share/doc/db5/csharp/fti/FTI_101.bin
share/doc/db5/csharp/fti/FTI_102.bin
share/doc/db5/csharp/fti/FTI_103.bin
share/doc/db5/csharp/fti/FTI_104.bin
share/doc/db5/csharp/fti/FTI_105.bin
share/doc/db5/csharp/fti/FTI_106.bin
share/doc/db5/csharp/fti/FTI_107.bin
share/doc/db5/csharp/fti/FTI_108.bin
share/doc/db5/csharp/fti/FTI_109.bin
share/doc/db5/csharp/fti/FTI_110.bin
share/doc/db5/csharp/fti/FTI_111.bin
share/doc/db5/csharp/fti/FTI_112.bin
share/doc/db5/csharp/fti/FTI_113.bin
share/doc/db5/csharp/fti/FTI_114.bin
share/doc/db5/csharp/fti/FTI_115.bin
share/doc/db5/csharp/fti/FTI_116.bin
share/doc/db5/csharp/fti/FTI_117.bin
share/doc/db5/csharp/fti/FTI_118.bin
share/doc/db5/csharp/fti/FTI_119.bin
share/doc/db5/csharp/fti/FTI_120.bin
share/doc/db5/csharp/fti/FTI_121.bin
share/doc/db5/csharp/fti/FTI_122.bin
share/doc/db5/csharp/fti/FTI_97.bin
share/doc/db5/csharp/fti/FTI_98.bin
share/doc/db5/csharp/fti/FTI_99.bin
share/doc/db5/csharp/fti/FTI_Files.bin
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_AckPolicy.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_ActiveTransaction.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_BTreeCursor.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_BTreeDatabase.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_BTreeDatabaseConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_BTreeStats.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_BackupOptions.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_BadSecondaryException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_BaseCursor.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_BaseDatabase.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_ByteOrder.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_CacheInfo.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_CachePriority.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_CompactConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_CompactData.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_Cursor.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_CursorConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_Database.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_DatabaseConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_DatabaseEntry.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_DatabaseEnvironment.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_DatabaseEnvironmentConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_DatabaseException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_DatabaseType.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_DbChannel.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_DbSite.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_DbSiteConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_DbThreadID.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_DeadlockException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_DeadlockPolicy.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_ErrorCodes.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_ForeignConflictException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_FullLogBufferException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_HashCursor.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_HashDatabase.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_HashDatabaseConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_HashStats.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_HeapDatabase.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_HeapDatabaseConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_HeapFullException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_HeapRecordId.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_HeapStats.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_IBackup.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_JoinCursor.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_KeyEmptyException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_KeyExistException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_KeyRange.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_LSN.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_LeaseExpiredException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_LockNotGrantedException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_LockStats.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_LockingConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_LockingInfo.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_LogConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_LogStats.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_LogVerifyConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_MPoolConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_MPoolFileStats.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_MPoolStats.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_MultipleDatabaseEntry.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_MultipleKeyDatabaseEntry.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_MutexConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_MutexStats.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_NotFoundException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_OldVersionException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_PageNotFoundException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_PreparedTransaction.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_QueueDatabase.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_QueueDatabaseConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_QueueStats.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_RecnoCursor.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_RecnoDatabase.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_RecnoDatabaseConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_RecnoStats.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_RepMgrSite.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_RepMgrStats.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_RepProcMsgResult.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_ReplicationConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_ReplicationHostAddress.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_ReplicationStats.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_RunRecoveryException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_SecondaryBTreeDatabase.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_SecondaryBTreeDatabaseConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_SecondaryCursor.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_SecondaryDatabase.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_SecondaryDatabaseConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_SecondaryHashDatabase.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_SecondaryHashDatabaseConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_SecondaryQueueDatabase.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_SecondaryQueueDatabaseConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_SecondaryRecnoDatabase.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_SecondaryRecnoDatabaseConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_Sequence.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_SequenceConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_SequenceStats.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_Transaction.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_TransactionConfig.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_TransactionStats.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_VerboseMessages.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_VerificationException.htm
share/doc/db5/csharp/html/AllMembers_T_BerkeleyDB_VersionMismatchException.htm
share/doc/db5/csharp/html/F_BerkeleyDB_AckPolicy_ALL.htm
share/doc/db5/csharp/html/F_BerkeleyDB_AckPolicy_ALL_AVAILABLE.htm
share/doc/db5/csharp/html/F_BerkeleyDB_AckPolicy_ALL_PEERS.htm
share/doc/db5/csharp/html/F_BerkeleyDB_AckPolicy_NONE.htm
share/doc/db5/csharp/html/F_BerkeleyDB_AckPolicy_ONE.htm
share/doc/db5/csharp/html/F_BerkeleyDB_AckPolicy_ONE_PEER.htm
share/doc/db5/csharp/html/F_BerkeleyDB_AckPolicy_QUORUM.htm
share/doc/db5/csharp/html/F_BerkeleyDB_BTreeDatabaseConfig_BTreeCompare.htm
share/doc/db5/csharp/html/F_BerkeleyDB_BTreeDatabaseConfig_BTreePrefixCompare.htm
share/doc/db5/csharp/html/F_BerkeleyDB_BTreeDatabaseConfig_Creation.htm
share/doc/db5/csharp/html/F_BerkeleyDB_BTreeDatabaseConfig_DuplicateCompare.htm
share/doc/db5/csharp/html/F_BerkeleyDB_BTreeDatabaseConfig_Duplicates.htm
share/doc/db5/csharp/html/F_BerkeleyDB_BTreeDatabaseConfig_NoReverseSplitting.htm
share/doc/db5/csharp/html/F_BerkeleyDB_BTreeDatabaseConfig_UseRecordNumbers.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/F_BerkeleyDB_BackupOptions_Clean.htm
share/doc/db5/csharp/html/F_BerkeleyDB_BackupOptions_Creation.htm
share/doc/db5/csharp/html/F_BerkeleyDB_BackupOptions_Files.htm
share/doc/db5/csharp/html/F_BerkeleyDB_BackupOptions_NoLogs.htm
share/doc/db5/csharp/html/F_BerkeleyDB_BackupOptions_SingleDir.htm
share/doc/db5/csharp/html/F_BerkeleyDB_BackupOptions_Update.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/F_BerkeleyDB_ByteOrder_BIG_ENDIAN.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ByteOrder_LITTLE_ENDIAN.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ByteOrder_MACHINE.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CacheInfo_Bytes.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CacheInfo_Gigabytes.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CacheInfo_NCaches.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CachePriority_DEFAULT.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CachePriority_HIGH.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CachePriority_LOW.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CachePriority_VERY_HIGH.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CachePriority_VERY_LOW.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CompactConfig_TruncatePages.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CompactConfig_returnEnd.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CompactConfig_start.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CompactConfig_stop.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CursorConfig_IsolationDegree.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CursorConfig_Priority.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CursorConfig_SnapshotIsolation.htm
share/doc/db5/csharp/html/F_BerkeleyDB_CursorConfig_WriteCursor.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_AutoCommit.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_ByteOrder.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_CacheSize.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_DoChecksum.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_Env.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_ErrorFeedback.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_ErrorPrefix.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_Feedback.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_FreeThreaded.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_NoMMap.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_NoWaitDbExclusiveLock.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_NonDurableTxns.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_Priority.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_ReadOnly.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_ReadUncommitted.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_Truncate.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseConfig_UseMVCC.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_AutoCommit.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_CDB_ALLDB.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_Create.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_CreationDir.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_DataDirs.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_ErrorFeedback.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_ErrorPrefix.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_EventNotify.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_Feedback.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_ForceFlush.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_FreeThreaded.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_HotbackupInProgress.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_InitRegions.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_IntermediateDirMode.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_LockSystemCfg.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_Lockdown.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_LogSystemCfg.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_MPoolSystemCfg.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_MetadataDir.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_MutexSystemCfg.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_NoBuffer.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_NoLocking.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_NoMMap.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_NoPanic.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_Overwrite.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_Private.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_Register.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_RepSystemCfg.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_RunFatalRecovery.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_RunRecovery.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_SetThreadID.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_SystemMemory.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_TempDir.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_ThreadIsAlive.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_ThreadName.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_TimeNotGranted.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_TxnNoSync.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_TxnNoWait.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_TxnSnapshot.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_TxnWriteNoSync.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_UseCDB.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_UseEnvironmentVars.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_UseLocking.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_UseLogging.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_UseMPool.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_UseMVCC.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_UseReplication.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_UseTxns.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_Verbosity.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseEnvironmentConfig_YieldCPU.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseException_ErrorCode.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseType_BTREE.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseType_HASH.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseType_HEAP.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseType_QUEUE.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseType_RECNO.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DatabaseType_UNKNOWN.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DbSiteConfig_Host.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DbSiteConfig_Port.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DbThreadID_processID.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DbThreadID_threadID.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DeadlockPolicy_DEFAULT.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DeadlockPolicy_EXPIRE.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DeadlockPolicy_MAX_LOCKS.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DeadlockPolicy_MAX_WRITE.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DeadlockPolicy_MIN_LOCKS.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DeadlockPolicy_MIN_WRITE.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DeadlockPolicy_OLDEST.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DeadlockPolicy_RANDOM.htm
share/doc/db5/csharp/html/F_BerkeleyDB_DeadlockPolicy_YOUNGEST.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_BUFFER_SMALL.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_DONOTINDEX.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_FOREIGN_CONFLICT.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_HEAP_FULL.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_KEYEMPTY.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_KEYEXIST.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_LOCK_DEADLOCK.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_LOCK_NOTGRANTED.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_LOG_BUFFER_FULL.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_NOSERVER.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_NOTFOUND.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_OLD_VERSION.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_PAGE_NOTFOUND.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_REP_DUPMASTER.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_REP_HANDLE_DEAD.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_REP_HOLDELECTION.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_REP_IGNORE.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_REP_ISPERM.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_REP_JOIN_FAILURE.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_REP_LEASE_EXPIRED.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_REP_LOCKOUT.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_REP_NEWSITE.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_REP_NOTPERM.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_REP_UNAVAIL.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_RUNRECOVERY.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_SECONDARY_BAD.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_VERIFY_BAD.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ErrorCodes_DB_VERSION_MISMATCH.htm
share/doc/db5/csharp/html/F_BerkeleyDB_HashDatabaseConfig_Creation.htm
share/doc/db5/csharp/html/F_BerkeleyDB_HashDatabaseConfig_DuplicateCompare.htm
share/doc/db5/csharp/html/F_BerkeleyDB_HashDatabaseConfig_Duplicates.htm
share/doc/db5/csharp/html/F_BerkeleyDB_HashDatabaseConfig_HashComparison.htm
share/doc/db5/csharp/html/F_BerkeleyDB_HashDatabaseConfig_HashFunction.htm
share/doc/db5/csharp/html/F_BerkeleyDB_HeapDatabaseConfig_Creation.htm
share/doc/db5/csharp/html/F_BerkeleyDB_LSN_LogFileNumber.htm
share/doc/db5/csharp/html/F_BerkeleyDB_LSN_Offset.htm
share/doc/db5/csharp/html/F_BerkeleyDB_LockingConfig_DeadlockResolution.htm
share/doc/db5/csharp/html/F_BerkeleyDB_LockingInfo_IsolationDegree.htm
share/doc/db5/csharp/html/F_BerkeleyDB_LockingInfo_ReadModifyWrite.htm
share/doc/db5/csharp/html/F_BerkeleyDB_LogConfig_AutoRemove.htm
share/doc/db5/csharp/html/F_BerkeleyDB_LogConfig_Dir.htm
share/doc/db5/csharp/html/F_BerkeleyDB_LogConfig_ForceSync.htm
share/doc/db5/csharp/html/F_BerkeleyDB_LogConfig_InMemory.htm
share/doc/db5/csharp/html/F_BerkeleyDB_LogConfig_NoBuffer.htm
share/doc/db5/csharp/html/F_BerkeleyDB_LogConfig_ZeroOnCreate.htm
share/doc/db5/csharp/html/F_BerkeleyDB_MPoolConfig_CacheSize.htm
share/doc/db5/csharp/html/F_BerkeleyDB_MPoolConfig_MaxCacheSize.htm
share/doc/db5/csharp/html/F_BerkeleyDB_QueueDatabaseConfig_Append.htm
share/doc/db5/csharp/html/F_BerkeleyDB_QueueDatabaseConfig_ConsumeInOrder.htm
share/doc/db5/csharp/html/F_BerkeleyDB_QueueDatabaseConfig_Creation.htm
share/doc/db5/csharp/html/F_BerkeleyDB_RecnoDatabaseConfig_Append.htm
share/doc/db5/csharp/html/F_BerkeleyDB_RecnoDatabaseConfig_BackingFile.htm
share/doc/db5/csharp/html/F_BerkeleyDB_RecnoDatabaseConfig_Creation.htm
share/doc/db5/csharp/html/F_BerkeleyDB_RecnoDatabaseConfig_Renumber.htm
share/doc/db5/csharp/html/F_BerkeleyDB_RecnoDatabaseConfig_Snapshot.htm
share/doc/db5/csharp/html/F_BerkeleyDB_RepMgrSite_Address.htm
share/doc/db5/csharp/html/F_BerkeleyDB_RepMgrSite_EId.htm
share/doc/db5/csharp/html/F_BerkeleyDB_RepMgrSite_isConnected.htm
share/doc/db5/csharp/html/F_BerkeleyDB_RepMgrSite_isPeer.htm
share/doc/db5/csharp/html/F_BerkeleyDB_RepProcMsgResult_Result.htm
share/doc/db5/csharp/html/F_BerkeleyDB_RepProcMsgResult_RetLsn.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ReplicationConfig_AutoInit.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ReplicationConfig_BulkTransfer.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ReplicationConfig_DelayClientSync.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ReplicationConfig_Elections.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/F_BerkeleyDB_ReplicationConfig_InMemory.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/F_BerkeleyDB_ReplicationConfig_NoBlocking.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ReplicationConfig_RepMgrAckPolicy.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ReplicationConfig_RepmgrSitesConfig.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ReplicationConfig_Strict2Site.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ReplicationConfig_Transport.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ReplicationConfig_UseMasterLeases.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ReplicationHostAddress_Host.htm
share/doc/db5/csharp/html/F_BerkeleyDB_ReplicationHostAddress_Port.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryBTreeDatabaseConfig_Compare.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryBTreeDatabaseConfig_Creation.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryBTreeDatabaseConfig_DuplicateCompare.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryBTreeDatabaseConfig_Duplicates.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryBTreeDatabaseConfig_NoReverseSplitting.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryBTreeDatabaseConfig_PrefixCompare.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryBTreeDatabaseConfig_UseRecordNumbers.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryDatabaseConfig_ImmutableKey.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryDatabaseConfig_Populate.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryHashDatabaseConfig_Compare.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryHashDatabaseConfig_Creation.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryHashDatabaseConfig_DuplicateCompare.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryHashDatabaseConfig_Duplicates.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryHashDatabaseConfig_HashFunction.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryQueueDatabaseConfig_Creation.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryRecnoDatabaseConfig_BackingFile.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryRecnoDatabaseConfig_Creation.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryRecnoDatabaseConfig_Renumber.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SecondaryRecnoDatabaseConfig_Snapshot.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SequenceConfig_BackingDatabase.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SequenceConfig_Creation.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SequenceConfig_FreeThreaded.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SequenceConfig_Wrap.htm
share/doc/db5/csharp/html/F_BerkeleyDB_SequenceConfig_key.htm
share/doc/db5/csharp/html/F_BerkeleyDB_TransactionConfig_Bulk.htm
share/doc/db5/csharp/html/F_BerkeleyDB_TransactionConfig_IsolationDegree.htm
share/doc/db5/csharp/html/F_BerkeleyDB_TransactionConfig_NoWait.htm
share/doc/db5/csharp/html/F_BerkeleyDB_TransactionConfig_Snapshot.htm
share/doc/db5/csharp/html/F_BerkeleyDB_TransactionConfig_SyncAction.htm
share/doc/db5/csharp/html/F_BerkeleyDB_Transaction_GlobalIdLength.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_AllFileOps.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_Backup.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_Deadlock.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_FileOps.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_Recovery.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_Register.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_RepMgrConnectionFailure.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_RepMgrMisc.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_Replication.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_ReplicationElection.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_ReplicationLease.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_ReplicationMessages.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_ReplicationMisc.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_ReplicationSync.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_ReplicationSystemInfo.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_ReplicationTest.htm
share/doc/db5/csharp/html/F_BerkeleyDB_VerboseMessages_WaitsForTable.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_AckPolicy.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_BTreeDatabaseConfig.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_BackupOptions.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_BadSecondaryException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_ByteOrder.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_CacheInfo.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_CachePriority.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_CompactConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_CursorConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_DatabaseConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_DatabaseEnvironmentConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_DatabaseException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_DatabaseType.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_DbSiteConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_DbThreadID.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_DeadlockException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_DeadlockPolicy.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_ErrorCodes.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_ForeignConflictException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_FullLogBufferException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_HashDatabaseConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_HeapDatabaseConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_HeapFullException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_KeyEmptyException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_KeyExistException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_LSN.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_LeaseExpiredException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_LockNotGrantedException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_LockingConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_LockingInfo.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_LogConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_MPoolConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_NotFoundException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_OldVersionException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_PageNotFoundException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_QueueDatabaseConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_RecnoDatabaseConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_RepMgrSite.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_RepProcMsgResult.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_ReplicationConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_ReplicationHostAddress.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_RunRecoveryException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_SecondaryBTreeDatabaseConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_SecondaryDatabaseConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_SecondaryHashDatabaseConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_SecondaryQueueDatabaseConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_SecondaryRecnoDatabaseConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_SequenceConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_Transaction.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_TransactionConfig.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_VerboseMessages.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_VerificationException.htm
share/doc/db5/csharp/html/Fields_T_BerkeleyDB_VersionMismatchException.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_Add.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_AddUnique.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_Duplicate.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_Insert.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_Move.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_MoveMultiple.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_MoveMultipleKey.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_MoveMultipleKey_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_MoveMultipleKey_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_MoveMultipleKey_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_MoveMultiple_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_MoveMultiple_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_MoveMultiple_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_Move_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_Recno.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeCursor_Recno_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabaseConfig_SetCompression.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabaseConfig_SetCompression_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabaseConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Compact.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Compact_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Cursor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Cursor_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Cursor_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Cursor_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_FastStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_FastStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_FastStats_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Get.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_GetMultiple.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_GetMultiple_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_GetMultiple_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_GetMultiple_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Get_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Get_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_KeyRange.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_KeyRange_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Open.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Open_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Open_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Open_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_PutNoDuplicate.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_PutNoDuplicate_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Stats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Stats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_Stats_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_TruncateUnusedPages.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BTreeDatabase_TruncateUnusedPages_1.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/M_BerkeleyDB_BackupOptions__ctor.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/M_BerkeleyDB_BadSecondaryException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseCursor_Close.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseCursor_Compare.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseCursor_Count.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseCursor_Delete.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseCursor_Dispose.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseCursor_GetEnumerator.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Close.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Close_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Cursor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Cursor_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Cursor_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Cursor_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Delete.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Delete_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Dispose.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Exists.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Exists_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Exists_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Get.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_GetBoth.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_GetBoth_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_GetBoth_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Get_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Get_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Get_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Get_4.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Get_5.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_PrintFastStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_PrintFastStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_PrintStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_PrintStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Remove.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Remove_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Remove_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Remove_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Rename.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Rename_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Rename_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Rename_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Sync.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Truncate.htm
share/doc/db5/csharp/html/M_BerkeleyDB_BaseDatabase_Truncate_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_ByteOrder_FromConst.htm
share/doc/db5/csharp/html/M_BerkeleyDB_CacheInfo__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_CompactConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_CursorConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Add.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Delete.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Duplicate.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_GetEnumerator.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Move.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveFirst.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveFirstMultiple.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveFirstMultipleKey.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveFirstMultipleKey_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveFirstMultipleKey_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveFirstMultipleKey_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveFirstMultiple_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveFirstMultiple_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveFirstMultiple_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveFirst_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveFirst_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveFirst_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveLast.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveLast_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveLast_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveLast_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultiple.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultipleKey.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultipleKey_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultipleKey_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultipleKey_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultipleKey_4.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultipleKey_5.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultipleKey_6.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultipleKey_7.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultiple_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultiple_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultiple_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultiple_4.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultiple_5.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultiple_6.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveMultiple_7.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNext.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextDuplicate.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextDuplicateMultiple.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextDuplicateMultipleKey.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextDuplicateMultipleKey_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextDuplicateMultipleKey_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextDuplicateMultipleKey_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextDuplicateMultiple_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextDuplicateMultiple_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextDuplicateMultiple_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextDuplicate_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextDuplicate_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextDuplicate_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextMultiple.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextMultipleKey.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextMultipleKey_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextMultipleKey_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextMultipleKey_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextMultiple_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextMultiple_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextMultiple_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextUnique.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextUniqueMultiple.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextUniqueMultipleKey.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextUniqueMultipleKey_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextUniqueMultipleKey_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextUniqueMultipleKey_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextUniqueMultiple_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextUniqueMultiple_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextUniqueMultiple_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextUnique_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextUnique_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNextUnique_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNext_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNext_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MoveNext_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MovePrev.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MovePrevDuplicate.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MovePrevDuplicate_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MovePrevDuplicate_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MovePrevDuplicate_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MovePrevUnique.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MovePrevUnique_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MovePrevUnique_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MovePrevUnique_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MovePrev_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MovePrev_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_MovePrev_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Move_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Move_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Move_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Move_4.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Move_5.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Overwrite.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Refresh.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_RefreshMultiple.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_RefreshMultipleKey.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_RefreshMultipleKey_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_RefreshMultipleKey_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_RefreshMultipleKey_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_RefreshMultiple_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_RefreshMultiple_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_RefreshMultiple_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Refresh_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Refresh_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Cursor_Refresh_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseConfig_SetEncryption.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEntry_Dispose.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEntry__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEntry__ctor_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEntry__ctor_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEntry__ctor_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironmentConfig_SetEncryption.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironmentConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_ArchivableDatabaseFiles.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_ArchivableLogFiles.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_Backup.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_BackupDatabase.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_BeginCDSGroup.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_BeginTransaction.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_BeginTransaction_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_BeginTransaction_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_Checkpoint.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_Checkpoint_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_Close.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_CloseForceSync.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_DetectDeadlocks.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_FailCheck.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_IsTransactionApplied.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_LockingSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_LockingSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_LogFile.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_LogFiles.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_LogFlush.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_LogFlush_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_LogVerify.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_LogWrite.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_LoggingSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_LoggingSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_MPoolSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_MPoolSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_MutexSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_MutexSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_Open.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_Panic.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintLockingSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintLockingSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintLockingSystemStats_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintLoggingSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintLoggingSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintMPoolSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintMPoolSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintMPoolSystemStats_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintMutexSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintMutexSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintRepMgrSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintRepMgrSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintReplicationSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintReplicationSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintSubsystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintSubsystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintTransactionSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_PrintTransactionSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_Recover.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RegionSetMemoryLimit.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_Remove.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RemoveDB.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RemoveDB_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RemoveDB_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RemoveDB_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RemoveUnusedLogFiles.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_Remove_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RenameDB.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RenameDB_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RenameDB_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RenameDB_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepHoldElection.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepHoldElection_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepHoldElection_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepMgrChannel.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepMgrSite.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepMgrSiteConfig.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepMgrSite_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepMgrStartClient.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepMgrStartClient_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepMgrStartMaster.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepMgrSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepMgrSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepProcessMessage.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepSetClockskew.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepSetRetransmissionRequest.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepSetTransmitLimit.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepSetTransport.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepStartClient.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepStartClient_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepStartMaster.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepStartMaster_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_RepSync.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_ReplicationSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_ReplicationSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_ResetFileID.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_ResetLSN.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_SetMaxSequentialWrites.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_SyncMemPool.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_SyncMemPool_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_TransactionSystemStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_TransactionSystemStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_TrickleCleanMemPool.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_WriteToLog.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseEnvironment_WriteToLog_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseException_ThrowException.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DatabaseType_ToString.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_GetBothMultiple.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_GetBothMultiple_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_GetBothMultiple_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_GetBothMultiple_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_GetMultiple.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_GetMultiple_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_GetMultiple_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_GetMultiple_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Join.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Open.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Open_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Open_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Open_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Put.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_PutNoOverwrite.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_PutNoOverwrite_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_PutNoOverwrite_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_PutNoOverwrite_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Put_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Put_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Put_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Salvage.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Salvage_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Salvage_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Salvage_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Salvage_4.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Salvage_5.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Upgrade.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Upgrade_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Verify.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Verify_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Database_Verify_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DbChannel_Close.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DbChannel_Dispose.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DbChannel_SendMessage.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DbChannel_SendRequest.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DbChannel_SendRequest_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DbSiteConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DbSite_Close.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DbSite_Dispose.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DbSite_Remove.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DbThreadID__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_DeadlockException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_ErrorCodes__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_ForeignConflictException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_FullLogBufferException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashCursor_Add.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashCursor_AddUnique.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashCursor_Duplicate.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashCursor_Insert.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabaseConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_Compact.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_Compact_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_Cursor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_Cursor_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_Cursor_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_Cursor_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_FastStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_FastStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_FastStats_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_Open.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_Open_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_Open_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_Open_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_PutNoDuplicate.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_PutNoDuplicate_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_Stats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_Stats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_Stats_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_TruncateUnusedPages.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HashDatabase_TruncateUnusedPages_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapDatabaseConfig_MaxSize.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapDatabaseConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapDatabase_Append.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapDatabase_Append_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapDatabase_FastStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapDatabase_FastStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapDatabase_FastStats_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapDatabase_Open.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapDatabase_Open_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapDatabase_Stats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapDatabase_Stats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapDatabase_Stats_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapFullException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapRecordId__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapRecordId_fromArray.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapRecordId_fromArray_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapRecordId_toArray.htm
share/doc/db5/csharp/html/M_BerkeleyDB_HeapRecordId_toArray_1.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/M_BerkeleyDB_IBackup_Close.htm
share/doc/db5/csharp/html/M_BerkeleyDB_IBackup_Open.htm
share/doc/db5/csharp/html/M_BerkeleyDB_IBackup_Write.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/M_BerkeleyDB_JoinCursor_Close.htm
share/doc/db5/csharp/html/M_BerkeleyDB_JoinCursor_Dispose.htm
share/doc/db5/csharp/html/M_BerkeleyDB_JoinCursor_GetEnumerator.htm
share/doc/db5/csharp/html/M_BerkeleyDB_JoinCursor_MoveNext.htm
share/doc/db5/csharp/html/M_BerkeleyDB_JoinCursor_MoveNextItem.htm
share/doc/db5/csharp/html/M_BerkeleyDB_JoinCursor_MoveNextItem_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_JoinCursor_MoveNext_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_KeyEmptyException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_KeyExistException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_LSN_Compare.htm
share/doc/db5/csharp/html/M_BerkeleyDB_LSN__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_LeaseExpiredException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_LockNotGrantedException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_LockingConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_LockingInfo__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_LogConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_LogVerifyConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_MPoolConfig_SetMaxSequentialWrites.htm
share/doc/db5/csharp/html/M_BerkeleyDB_MPoolConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_MultipleDatabaseEntry_GetEnumerator.htm
share/doc/db5/csharp/html/M_BerkeleyDB_MultipleDatabaseEntry__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_MultipleDatabaseEntry__ctor_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_MultipleDatabaseEntry__ctor_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_MultipleKeyDatabaseEntry_GetEnumerator.htm
share/doc/db5/csharp/html/M_BerkeleyDB_MultipleKeyDatabaseEntry__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_MultipleKeyDatabaseEntry__ctor_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_MutexConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_NotFoundException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_OldVersionException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_PageNotFoundException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabaseConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabase_Append.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabase_Append_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabase_Consume.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabase_Consume_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabase_Consume_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabase_FastStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabase_FastStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabase_FastStats_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabase_Open.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabase_Open_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabase_Stats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabase_Stats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_QueueDatabase_Stats_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoCursor_Duplicate.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoCursor_Insert.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabaseConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Append.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Append_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Compact.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Compact_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Cursor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Cursor_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Cursor_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Cursor_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_FastStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_FastStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_FastStats_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Open.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Open_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Open_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Open_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Stats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Stats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_Stats_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_TruncateUnusedPages.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RecnoDatabase_TruncateUnusedPages_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_ReplicationConfig_Clockskew.htm
share/doc/db5/csharp/html/M_BerkeleyDB_ReplicationConfig_RetransmissionRequest.htm
share/doc/db5/csharp/html/M_BerkeleyDB_ReplicationConfig_TransmitLimit.htm
share/doc/db5/csharp/html/M_BerkeleyDB_ReplicationConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_ReplicationHostAddress__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_ReplicationHostAddress__ctor_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_ReplicationHostAddress__ctor_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_RunRecoveryException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryBTreeDatabaseConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryBTreeDatabase_Open.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryBTreeDatabase_Open_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryBTreeDatabase_Open_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryBTreeDatabase_Open_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_Delete.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_Duplicate.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_GetEnumerator.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_Move.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveFirst.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveFirst_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveFirst_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveFirst_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveLast.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveLast_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveLast_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveLast_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveNext.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveNextDuplicate.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveNextDuplicate_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveNextDuplicate_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveNextDuplicate_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveNextUnique.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveNextUnique_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveNextUnique_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveNextUnique_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveNext_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveNext_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MoveNext_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MovePrev.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MovePrevDuplicate.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MovePrevDuplicate_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MovePrevDuplicate_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MovePrevDuplicate_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MovePrevUnique.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MovePrevUnique_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MovePrevUnique_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MovePrevUnique_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MovePrev_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MovePrev_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_MovePrev_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_Move_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_Move_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_Move_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_Move_4.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_Move_5.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_Refresh.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_Refresh_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_Refresh_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryCursor_Refresh_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryDatabaseConfig_SetForeignKeyConstraint.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryDatabaseConfig_SetForeignKeyConstraint_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryDatabaseConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryDatabase_Open.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryDatabase_Open_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryDatabase_Open_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryDatabase_Open_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryDatabase_SecondaryCursor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryDatabase_SecondaryCursor_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryDatabase_SecondaryCursor_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryDatabase_SecondaryCursor_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryHashDatabaseConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryHashDatabase_Open.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryHashDatabase_Open_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryHashDatabase_Open_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryHashDatabase_Open_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryQueueDatabaseConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryQueueDatabase_Open.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryQueueDatabase_Open_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryRecnoDatabaseConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryRecnoDatabase_Open.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryRecnoDatabase_Open_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryRecnoDatabase_Open_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SecondaryRecnoDatabase_Open_3.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SequenceConfig_SetRange.htm
share/doc/db5/csharp/html/M_BerkeleyDB_SequenceConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence_Close.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence_Dispose.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence_Get.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence_Get_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence_Get_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence_PrintStats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence_PrintStats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence_Remove.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence_Remove_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence_Remove_2.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence_Stats.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence_Stats_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Sequence__ctor_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_TransactionConfig__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Transaction_Abort.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Transaction_Commit.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Transaction_Commit_1.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Transaction_Discard.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Transaction_Prepare.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Transaction_SetLockTimeout.htm
share/doc/db5/csharp/html/M_BerkeleyDB_Transaction_SetTxnTimeout.htm
share/doc/db5/csharp/html/M_BerkeleyDB_VerboseMessages__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_VerificationException__ctor.htm
share/doc/db5/csharp/html/M_BerkeleyDB_VersionMismatchException__ctor.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_AckPolicy.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_ActiveTransaction.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_BTreeCursor.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_BTreeDatabase.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_BTreeDatabaseConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_BTreeStats.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_BackupOptions.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_BadSecondaryException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_BaseCursor.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_BaseDatabase.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_ByteOrder.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_CacheInfo.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_CachePriority.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_CompactConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_CompactData.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_Cursor.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_CursorConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_Database.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_DatabaseConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_DatabaseEntry.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_DatabaseEnvironment.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_DatabaseEnvironmentConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_DatabaseException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_DatabaseType.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_DbChannel.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_DbSite.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_DbSiteConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_DbThreadID.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_DeadlockException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_DeadlockPolicy.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_ErrorCodes.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_ForeignConflictException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_FullLogBufferException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_HashCursor.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_HashDatabase.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_HashDatabaseConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_HashStats.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_HeapDatabase.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_HeapDatabaseConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_HeapFullException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_HeapRecordId.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_HeapStats.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_IBackup.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_JoinCursor.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_KeyEmptyException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_KeyExistException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_KeyRange.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_LSN.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_LeaseExpiredException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_LockNotGrantedException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_LockStats.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_LockingConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_LockingInfo.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_LogConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_LogStats.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_LogVerifyConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_MPoolConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_MPoolFileStats.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_MPoolStats.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_MultipleDatabaseEntry.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_MultipleKeyDatabaseEntry.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_MutexConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_MutexStats.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_NotFoundException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_OldVersionException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_PageNotFoundException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_PreparedTransaction.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_QueueDatabase.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_QueueDatabaseConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_QueueStats.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_RecnoCursor.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_RecnoDatabase.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_RecnoDatabaseConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_RecnoStats.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_RepMgrSite.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_RepMgrStats.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_RepProcMsgResult.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_ReplicationConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_ReplicationHostAddress.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_ReplicationStats.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_RunRecoveryException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_SecondaryBTreeDatabase.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_SecondaryBTreeDatabaseConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_SecondaryCursor.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_SecondaryDatabase.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_SecondaryDatabaseConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_SecondaryHashDatabase.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_SecondaryHashDatabaseConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_SecondaryQueueDatabase.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_SecondaryQueueDatabaseConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_SecondaryRecnoDatabase.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_SecondaryRecnoDatabaseConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_Sequence.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_SequenceConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_SequenceStats.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_Transaction.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_TransactionConfig.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_TransactionStats.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_VerboseMessages.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_VerificationException.htm
share/doc/db5/csharp/html/Methods_T_BerkeleyDB_VersionMismatchException.htm
share/doc/db5/csharp/html/N_BerkeleyDB.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_Add.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_Move.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveFirst.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveFirstMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveFirstMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveLast.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveNext.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveNextDuplicate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveNextDuplicateMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveNextDuplicateMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveNextMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveNextMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveNextUnique.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveNextUniqueMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MoveNextUniqueMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MovePrev.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MovePrevDuplicate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_MovePrevUnique.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_Recno.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_Refresh.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_RefreshMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeCursor_RefreshMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabaseConfig_SetCompression.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_Close.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_Compact.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_Cursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_Delete.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_Exists.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_FastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_Get.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_GetBoth.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_GetBothMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_GetMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_KeyRange.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_Open.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_PrintFastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_Put.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_PutNoDuplicate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_PutNoOverwrite.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_Stats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_Truncate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BTreeDatabase_TruncateUnusedPages.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BaseDatabase_Close.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BaseDatabase_Cursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BaseDatabase_Delete.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BaseDatabase_Exists.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BaseDatabase_Get.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BaseDatabase_GetBoth.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BaseDatabase_PrintFastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BaseDatabase_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BaseDatabase_Remove.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BaseDatabase_Rename.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_BaseDatabase_Truncate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_Move.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveFirst.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveFirstMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveFirstMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveLast.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveNext.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveNextDuplicate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveNextDuplicateMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveNextDuplicateMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveNextMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveNextMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveNextUnique.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveNextUniqueMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MoveNextUniqueMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MovePrev.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MovePrevDuplicate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_MovePrevUnique.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_Refresh.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_RefreshMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Cursor_RefreshMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEntry__ctor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_BeginTransaction.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_Checkpoint.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_LockingSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_LogFlush.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_LoggingSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_MPoolSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_MutexSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_PrintLockingSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_PrintLoggingSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_PrintMPoolSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_PrintMutexSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_PrintRepMgrSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_PrintReplicationSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_PrintSubsystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_PrintTransactionSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_Remove.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_RemoveDB.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_RenameDB.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_RepHoldElection.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_RepMgrSite.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_RepMgrStartClient.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_RepMgrSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_RepStartClient.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_RepStartMaster.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_ReplicationSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_SyncMemPool.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_TransactionSystemStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DatabaseEnvironment_WriteToLog.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_Close.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_Cursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_Delete.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_Exists.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_Get.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_GetBoth.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_GetBothMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_GetMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_Open.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_PrintFastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_Put.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_PutNoOverwrite.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_Salvage.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_Truncate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_Upgrade.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Database_Verify.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_DbChannel_SendRequest.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_Add.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_Move.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveFirst.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveFirstMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveFirstMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveLast.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveNext.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveNextDuplicate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveNextDuplicateMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveNextDuplicateMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveNextMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveNextMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveNextUnique.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveNextUniqueMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MoveNextUniqueMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MovePrev.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MovePrevDuplicate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_MovePrevUnique.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_Refresh.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_RefreshMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashCursor_RefreshMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_Close.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_Compact.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_Cursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_Delete.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_Exists.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_FastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_Get.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_GetBoth.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_GetBothMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_GetMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_Open.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_PrintFastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_Put.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_PutNoDuplicate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_PutNoOverwrite.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_Stats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_Truncate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HashDatabase_TruncateUnusedPages.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_Append.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_Close.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_Cursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_Delete.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_Exists.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_FastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_Get.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_GetBoth.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_GetBothMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_GetMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_Open.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_PrintFastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_Put.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_PutNoOverwrite.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_Stats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapDatabase_Truncate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapRecordId_fromArray.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_HeapRecordId_toArray.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_JoinCursor_MoveNext.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_JoinCursor_MoveNextItem.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_MultipleDatabaseEntry__ctor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_MultipleKeyDatabaseEntry__ctor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_Append.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_Close.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_Consume.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_Cursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_Delete.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_Exists.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_FastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_Get.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_GetBoth.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_GetBothMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_GetMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_Open.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_PrintFastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_Put.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_PutNoOverwrite.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_Stats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_QueueDatabase_Truncate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_Move.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveFirst.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveFirstMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveFirstMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveLast.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveNext.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveNextDuplicate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveNextDuplicateMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveNextDuplicateMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveNextMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveNextMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveNextUnique.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveNextUniqueMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MoveNextUniqueMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MovePrev.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MovePrevDuplicate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_MovePrevUnique.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_Refresh.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_RefreshMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoCursor_RefreshMultipleKey.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_Append.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_Close.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_Compact.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_Cursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_Delete.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_Exists.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_FastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_Get.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_GetBoth.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_GetBothMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_GetMultiple.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_Open.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_PrintFastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_Put.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_PutNoOverwrite.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_Stats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_Truncate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_RecnoDatabase_TruncateUnusedPages.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_ReplicationHostAddress__ctor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryBTreeDatabaseConfig_SetForeignKeyConstraint.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryBTreeDatabase_Close.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryBTreeDatabase_Cursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryBTreeDatabase_Delete.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryBTreeDatabase_Exists.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryBTreeDatabase_Get.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryBTreeDatabase_GetBoth.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryBTreeDatabase_Open.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryBTreeDatabase_PrintFastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryBTreeDatabase_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryBTreeDatabase_SecondaryCursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryBTreeDatabase_Truncate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryCursor_Move.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryCursor_MoveFirst.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryCursor_MoveLast.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryCursor_MoveNext.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryCursor_MoveNextDuplicate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryCursor_MoveNextUnique.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryCursor_MovePrev.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryCursor_MovePrevDuplicate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryCursor_MovePrevUnique.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryCursor_Refresh.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryDatabaseConfig_SetForeignKeyConstraint.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryDatabase_Close.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryDatabase_Cursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryDatabase_Delete.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryDatabase_Exists.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryDatabase_Get.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryDatabase_GetBoth.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryDatabase_Open.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryDatabase_PrintFastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryDatabase_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryDatabase_SecondaryCursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryDatabase_Truncate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryHashDatabaseConfig_SetForeignKeyConstraint.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryHashDatabase_Close.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryHashDatabase_Cursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryHashDatabase_Delete.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryHashDatabase_Exists.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryHashDatabase_Get.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryHashDatabase_GetBoth.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryHashDatabase_Open.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryHashDatabase_PrintFastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryHashDatabase_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryHashDatabase_SecondaryCursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryHashDatabase_Truncate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryQueueDatabaseConfig_SetForeignKeyConstraint.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryQueueDatabase_Close.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryQueueDatabase_Cursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryQueueDatabase_Delete.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryQueueDatabase_Exists.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryQueueDatabase_Get.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryQueueDatabase_GetBoth.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryQueueDatabase_Open.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryQueueDatabase_PrintFastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryQueueDatabase_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryQueueDatabase_SecondaryCursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryQueueDatabase_Truncate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryRecnoDatabaseConfig_SetForeignKeyConstraint.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryRecnoDatabase_Close.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryRecnoDatabase_Cursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryRecnoDatabase_Delete.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryRecnoDatabase_Exists.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryRecnoDatabase_Get.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryRecnoDatabase_GetBoth.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryRecnoDatabase_Open.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryRecnoDatabase_PrintFastStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryRecnoDatabase_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryRecnoDatabase_SecondaryCursor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_SecondaryRecnoDatabase_Truncate.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Sequence_Get.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Sequence_PrintStats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Sequence_Remove.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Sequence_Stats.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Sequence__ctor.htm
share/doc/db5/csharp/html/Overload_BerkeleyDB_Transaction_Commit.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ActiveTransaction_Begun.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ActiveTransaction_BufferCopiesInCache.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ActiveTransaction_GlobalID.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ActiveTransaction_ID.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ActiveTransaction_Name.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ActiveTransaction_ParentID.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ActiveTransaction_Priority.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ActiveTransaction_ProcessID.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ActiveTransaction_SnapshotReads.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ActiveTransaction_ThreadID.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeDatabaseConfig_Compress.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeDatabaseConfig_Decompress.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeDatabaseConfig_MinKeysPerPage.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeDatabase_Compare.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeDatabase_Compress.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeDatabase_Decompress.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeDatabase_DupCompare.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeDatabase_Duplicates.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeDatabase_MinKeysPerPage.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeDatabase_PrefixCompare.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeDatabase_RecordNumbers.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeDatabase_ReverseSplit.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_DuplicatePages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_DuplicatePagesFreeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_EmptyPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_FreePages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_InternalPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_InternalPagesFreeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_LeafPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_LeafPagesFreeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_Levels.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_MagicNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_MetadataFlags.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_MinKey.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_OverflowPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_OverflowPagesFreeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_PageSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_Version.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_nData.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_nKeys.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BTreeStats_nPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_AutoCommit.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_CacheSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_Creation.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_DatabaseName.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_DoChecksum.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_EncryptAlgorithm.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_Encrypted.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_Endianness.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_ErrorFeedback.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_ErrorPrefix.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_Feedback.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_FileName.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_FreeThreaded.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_HasMultiple.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_InHostOrder.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_NoMMap.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_NoWaitDbExclusiveLock.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_NonDurableTxns.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_Pagesize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_Priority.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_ReadOnly.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_ReadUncommitted.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_Transactional.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_Truncated.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_Type.htm
share/doc/db5/csharp/html/P_BerkeleyDB_BaseDatabase_UseMVCC.htm
share/doc/db5/csharp/html/P_BerkeleyDB_CompactConfig_FillPercentage.htm
share/doc/db5/csharp/html/P_BerkeleyDB_CompactConfig_Pages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_CompactConfig_Timeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_CompactData_Deadlocks.htm
share/doc/db5/csharp/html/P_BerkeleyDB_CompactData_EmptyBuckets.htm
share/doc/db5/csharp/html/P_BerkeleyDB_CompactData_End.htm
share/doc/db5/csharp/html/P_BerkeleyDB_CompactData_Levels.htm
share/doc/db5/csharp/html/P_BerkeleyDB_CompactData_PagesExamined.htm
share/doc/db5/csharp/html/P_BerkeleyDB_CompactData_PagesFreed.htm
share/doc/db5/csharp/html/P_BerkeleyDB_CompactData_PagesTruncated.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Cursor_Current.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Cursor_CurrentMultiple.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Cursor_CurrentMultipleKey.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Cursor_Priority.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseConfig_EncryptAlgorithm.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseConfig_Encrypted.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseConfig_EncryptionPassword.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseConfig_PageSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEntry_Data.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEntry_Partial.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEntry_PartialLen.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEntry_PartialOffset.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEntry_ReadOnly.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironmentConfig_EncryptAlgorithm.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironmentConfig_EncryptionPassword.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironmentConfig_InitThreadCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironmentConfig_InitTxnCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironmentConfig_LockTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironmentConfig_MaxTransactions.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironmentConfig_ThreadCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironmentConfig_TxnTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironmentConfig_TxnTimestamp.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_AutoCommit.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_BackupBufferSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_BackupHandler.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_BackupReadCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_BackupReadSleepDuration.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_BackupWriteDirect.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_CDB_ALLDB.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_CacheSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_Create.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_DataDirs.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_DeadlockResolution.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_EncryptAlgorithm.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_ErrorFeedback.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_ErrorPrefix.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_EventNotify.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_Feedback.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_ForceFlush.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_FreeThreaded.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_Home.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_HotbackupInProgress.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_InitLockCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_InitLockObjectCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_InitLockerCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_InitLogIdCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_InitMutexes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_InitRegions.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_InitThreadCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_InitTxnCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_IntermediateDirMode.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_LockConflictMatrix.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_LockPartitions.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_LockTableSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_LockTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_Lockdown.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_LogAutoRemove.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_LogBufferSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_LogDir.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_LogFileMode.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_LogForceSync.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_LogInMemory.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_LogNoBuffer.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_LogRegionSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_LogZeroOnCreate.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_MMapSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_MaxCacheSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_MaxLockers.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_MaxLocks.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_MaxLogFileSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_MaxMutexes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_MaxObjects.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_MaxOpenFiles.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_MaxSequentialWrites.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_MaxTransactions.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_MetadataDir.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_MutexAlignment.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_MutexIncrement.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_NoBuffer.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_NoLocking.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_NoMMap.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_NoPanic.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_NumTestAndSetSpins.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_Overwrite.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_Private.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RegionMemoryLimitBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RegionMemoryLimitGBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_Register.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepAckTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepAutoInit.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepBulkTransfer.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepCheckpointDelay.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepClockskewFast.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepClockskewSlow.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepConnectionRetry.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepDelayClientSync.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepElectionRetry.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepElectionTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepFullElectionTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepHeartbeatMonitor.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepHeartbeatSend.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepInMemory.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepLeaseTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepMessageDispatch.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepMgrAckPolicy.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepMgrLocalSite.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepMgrRemoteSites.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepMgrRunElections.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepNSites.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepNoBlocking.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepPriority.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepRetransmissionRequestMax.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepRetransmissionRequestMin.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepStrict2Site.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepTransmitLimitBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepTransmitLimitGBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepTransport.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RepUseMasterLeases.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RunFatalRecovery.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_RunRecovery.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_SequentialWritePause.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_SetThreadID.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_SetThreadName.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_SystemMemory.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_TempDir.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_ThreadCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_ThreadIsAlive.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_TimeNotGranted.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_TxnNoSync.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_TxnNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_TxnSnapshot.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_TxnTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_TxnTimestamp.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_TxnWriteNoSync.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_UseEnvironmentVars.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_UseMVCC.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_UsingCDB.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_UsingLocking.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_UsingLogging.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_UsingMPool.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_UsingReplication.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_UsingTxns.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_Verbosity.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DatabaseEnvironment_YieldCPU.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DbChannel_Timeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DbSiteConfig_GroupCreator.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DbSiteConfig_Helper.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DbSiteConfig_Legacy.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DbSiteConfig_LocalSite.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DbSiteConfig_Peer.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DbSite_Address.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DbSite_EId.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DbSite_GroupCreator.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DbSite_Helper.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DbSite_Legacy.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DbSite_LocalSite.htm
share/doc/db5/csharp/html/P_BerkeleyDB_DbSite_Peer.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashDatabaseConfig_FillFactor.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashDatabaseConfig_TableSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashDatabase_Compare.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashDatabase_DupCompare.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashDatabase_Duplicates.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashDatabase_FillFactor.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashDatabase_HashFunction.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashDatabase_TableSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_BigPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_BigPagesFreeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_BucketPagesFreeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_DuplicatePages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_DuplicatePagesFreeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_FillFactor.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_FreePages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_MagicNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_MetadataFlags.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_OverflowPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_OverflowPagesFreeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_PageSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_Version.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_nData.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_nHashBuckets.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_nKeys.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HashStats_nPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HeapDatabaseConfig_MaxSizeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HeapDatabaseConfig_MaxSizeGBytes.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/P_BerkeleyDB_HeapDatabaseConfig_RegionSize.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/P_BerkeleyDB_HeapDatabase_MaxSizeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HeapDatabase_MaxSizeGBytes.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/P_BerkeleyDB_HeapDatabase_RegionSize.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/P_BerkeleyDB_HeapRecordId_Index.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HeapRecordId_PageNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HeapStats_MagicNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HeapStats_MetadataFlags.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HeapStats_PageSize.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/P_BerkeleyDB_HeapStats_RegionSize.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/P_BerkeleyDB_HeapStats_Version.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HeapStats_nPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HeapStats_nRecords.htm
share/doc/db5/csharp/html/P_BerkeleyDB_HeapStats_nRegions.htm
share/doc/db5/csharp/html/P_BerkeleyDB_JoinCursor_Current.htm
share/doc/db5/csharp/html/P_BerkeleyDB_KeyRange_Equal.htm
share/doc/db5/csharp/html/P_BerkeleyDB_KeyRange_Greater.htm
share/doc/db5/csharp/html/P_BerkeleyDB_KeyRange_Less.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_AllocatedLockers.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_AllocatedLocks.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_AllocatedObjects.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_InitLockers.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_InitLocks.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_InitObjects.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LastAllocatedLockerID.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LockConflictsNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LockConflictsWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LockDeadlocks.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LockDowngrades.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LockModes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LockPuts.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LockRequests.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LockSteals.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LockTimeoutLength.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LockTimeouts.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LockUpgrades.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LockerNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_LockerWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_Lockers.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_Locks.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxBucketLength.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxLockSteals.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxLockers.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxLockersInTable.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxLocks.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxLocksInBucket.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxLocksInTable.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxObjectSteals.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxObjects.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxObjectsInBucket.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxObjectsInTable.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxPartitionLockNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxPartitionLockWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_MaxUnusedID.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_ObjectNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_ObjectSteals.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_ObjectWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_Objects.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_PartitionLockNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_PartitionLockWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_RegionNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_RegionSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_RegionWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_TableSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_TxnTimeoutLength.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_TxnTimeouts.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockStats_nPartitions.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockingConfig_Conflicts.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockingConfig_InitLockCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockingConfig_InitLockObjectCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockingConfig_InitLockerCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockingConfig_MaxLockers.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockingConfig_MaxLocks.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockingConfig_MaxObjects.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockingConfig_Partitions.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LockingConfig_TableSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogConfig_BufferSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogConfig_FileMode.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogConfig_InitLogIdCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogConfig_MaxFileSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogConfig_RegionSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_BufferSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_Bytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_BytesSinceCheckpoint.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_CurrentFile.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_CurrentOffset.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_DiskFileNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_DiskOffset.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_FileId.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_FileSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_InitFileId.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_MBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_MBytesSinceCheckpoint.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_MagicNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_MaxCommitsPerFlush.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_MaxFileId.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_MinCommitsPerFlush.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_OverflowWrites.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_PermissionsMode.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_Reads.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_Records.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_RegionLockNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_RegionLockWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_RegionSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_Syncs.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_Version.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogStats_Writes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogVerifyConfig_CacheSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogVerifyConfig_ContinueAfterFail.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogVerifyConfig_DbFile.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogVerifyConfig_DbName.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogVerifyConfig_EndLsn.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogVerifyConfig_EndTime.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogVerifyConfig_EnvHome.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogVerifyConfig_StartLsn.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogVerifyConfig_StartTime.htm
share/doc/db5/csharp/html/P_BerkeleyDB_LogVerifyConfig_Verbose.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolConfig_MMapSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolConfig_MaxOpenFiles.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolConfig_MaxSequentialWrites.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolConfig_SequentialWritePause.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolFileStats_BackupSpins.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolFileStats_FileName.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolFileStats_MappedPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolFileStats_PageSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolFileStats_PagesCreatedInCache.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolFileStats_PagesInCache.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolFileStats_PagesNotInCache.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolFileStats_PagesRead.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolFileStats_PagesWritten.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_BlockedOperations.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_BucketsCheckedDuringAlloc.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_CacheRegions.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_CacheSettings.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_CleanPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_CleanPagesEvicted.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_DirtyPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_DirtyPagesEvicted.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_Files.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_FrozenBuffers.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_FrozenBuffersFreed.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_HashBucketMutexes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_HashBuckets.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_HashChainSearches.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_HashEntriesSearched.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_HashLockNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_HashLockWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_LongestHashChainSearch.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_MappedPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_MaxBucketsCheckedDuringAlloc.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_MaxBufferWrites.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_MaxBufferWritesSleep.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_MaxHashLockNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_MaxHashLockWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_MaxMMapSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_MaxOpenFileDescriptors.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_MaxPagesCheckedDuringAlloc.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_PageAllocations.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_PageSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_Pages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_PagesCheckedDuringAlloc.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_PagesCreatedInCache.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_PagesInCache.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_PagesNotInCache.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_PagesRead.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_PagesTrickled.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_PagesWritten.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_RegionLockNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_RegionLockWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_RegionMax.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_RegionSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_SyncInterrupted.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MPoolStats_ThawedBuffers.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MultipleDatabaseEntry_Recno.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MultipleKeyDatabaseEntry_Recno.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexConfig_Alignment.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexConfig_Increment.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexConfig_InitMutexes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexConfig_MaxMutexes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexConfig_NumTestAndSetSpins.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexStats_Alignment.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexStats_Available.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexStats_Count.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexStats_InUse.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexStats_InitCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexStats_Max.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexStats_MaxInUse.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexStats_RegionMax.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexStats_RegionNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexStats_RegionSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexStats_RegionWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_MutexStats_TASSpins.htm
share/doc/db5/csharp/html/P_BerkeleyDB_PreparedTransaction_GlobalID.htm
share/doc/db5/csharp/html/P_BerkeleyDB_PreparedTransaction_Txn.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueDatabaseConfig_ExtentSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueDatabaseConfig_Length.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueDatabaseConfig_PadByte.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueDatabase_ExtentSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueDatabase_InOrder.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueDatabase_Length.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueDatabase_PadByte.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueStats_DataPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueStats_DataPagesBytesFree.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueStats_FirstRecordNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueStats_MagicNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueStats_MetadataFlags.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueStats_NextRecordNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueStats_PageSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueStats_PagesPerExtent.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueStats_RecordLength.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueStats_RecordPadByte.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueStats_Version.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueStats_nData.htm
share/doc/db5/csharp/html/P_BerkeleyDB_QueueStats_nKeys.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoDatabaseConfig_Delimiter.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoDatabaseConfig_Length.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoDatabaseConfig_PadByte.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoDatabase_AppendCallback.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoDatabase_RecordDelimiter.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoDatabase_RecordLength.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoDatabase_RecordPad.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoDatabase_Renumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoDatabase_Snapshot.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoDatabase_SourceFile.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_DuplicatePages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_DuplicatePagesFreeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_EmptyPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_FreePages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_InternalPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_InternalPagesFreeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_LeafPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_LeafPagesFreeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_Levels.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_MagicNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_MetadataFlags.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_MinKey.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_OverflowPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_OverflowPagesFreeBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_PageSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_RecordLength.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_RecordPadByte.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_Version.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_nData.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_nKeys.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RecnoStats_nPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RepMgrStats_DroppedConnections.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RepMgrStats_DroppedMessages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RepMgrStats_ElectionThreads.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RepMgrStats_FailedConnections.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RepMgrStats_FailedMessages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RepMgrStats_MaxElectionThreads.htm
share/doc/db5/csharp/html/P_BerkeleyDB_RepMgrStats_QueuedMessages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_AckTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_CheckpointDelay.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_ClockskewFast.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_ClockskewSlow.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_ConnectionRetry.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_ElectionRetry.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_ElectionTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_FullElectionTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_HeartbeatMonitor.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_HeartbeatSend.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_LeaseTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_NSites.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_Priority.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_RetransmissionRequestMax.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_RetransmissionRequestMin.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_TransmitLimitBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationConfig_TransmitLimitGBytes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_AppliedTransactions.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_AwaitedLSN.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_AwaitedPage.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_BadGenerationMessages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_BulkBufferFills.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_BulkBufferOverflows.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_BulkBufferTransfers.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_BulkRecordsStored.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ClientServiceRequests.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ClientServiceRequestsMissing.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ClientStartupComplete.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_CurrentElectionGenerationNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_CurrentGenerationNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_CurrentQueuedLogRecords.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_CurrentWinner.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_CurrentWinnerMaxLSN.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_DupMasters.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_DuplicateLogRecords.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_DuplicatePages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ElectionDataGeneration.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ElectionGenerationNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ElectionPriority.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ElectionStatus.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ElectionTiebreaker.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ElectionTimeSec.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ElectionTimeUSec.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_Elections.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ElectionsWon.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_EnvID.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_EnvPriority.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_FailedMessageSends.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ForcedRerequests.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_IgnoredMessages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_LeaseCheckedMissesNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_LeaseCheckedNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_LeaseCheckedRefreshNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_LeaseSentNumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_MasterChanges.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_MasterEnvID.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_MaxLeaseSec.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_MaxLeaseUSec.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_MaxPermanentLSN.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_MaxQueuedLogRecords.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_MessagesSent.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_MissedLogRecords.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_MissedPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_NewSiteMessages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_NextLSN.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_NextPage.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_Outdated.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_QueuedLogRecords.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ReceivedLogRecords.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ReceivedMessages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_ReceivedPages.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_RegisteredSites.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_RegisteredSitesNeeded.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_Sites.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_StartSyncMessagesDelayed.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_Status.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_Throttled.htm
share/doc/db5/csharp/html/P_BerkeleyDB_ReplicationStats_Votes.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryBTreeDatabaseConfig_MinKeysPerPage.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryBTreeDatabase_Compare.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryBTreeDatabase_DupCompare.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryBTreeDatabase_Duplicates.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryBTreeDatabase_MinKeysPerPage.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryBTreeDatabase_PrefixCompare.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryBTreeDatabase_RecordNumbers.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryBTreeDatabase_ReverseSplit.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryCursor_Current.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryDatabaseConfig_ForeignKeyDatabase.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryDatabaseConfig_ForeignKeyNullfier.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryDatabaseConfig_KeyGen.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryDatabaseConfig_OnForeignKeyDelete.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryDatabaseConfig_Primary.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryDatabase_KeyGen.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryDatabase_Nullifier.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryHashDatabaseConfig_FillFactor.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryHashDatabaseConfig_TableSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryHashDatabase_Compare.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryHashDatabase_DupCompare.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryHashDatabase_Duplicates.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryHashDatabase_FillFactor.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryHashDatabase_HashFunction.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryHashDatabase_TableSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryQueueDatabaseConfig_ExtentSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryQueueDatabaseConfig_Length.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryQueueDatabaseConfig_PadByte.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryQueueDatabase_ExtentSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryQueueDatabase_Length.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryQueueDatabase_PadByte.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryRecnoDatabaseConfig_Delimiter.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryRecnoDatabaseConfig_Length.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryRecnoDatabaseConfig_PadByte.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryRecnoDatabase_BackingFile.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryRecnoDatabase_Delimiter.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryRecnoDatabase_Length.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryRecnoDatabase_PadByte.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryRecnoDatabase_Renumber.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SecondaryRecnoDatabase_Snapshot.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceConfig_CacheSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceConfig_Decrement.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceConfig_Increment.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceConfig_InitialValue.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceConfig_Max.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceConfig_Min.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceStats_CacheSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceStats_CachedValue.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceStats_Flags.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceStats_LastCachedValue.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceStats_LockNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceStats_LockWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceStats_Max.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceStats_Min.htm
share/doc/db5/csharp/html/P_BerkeleyDB_SequenceStats_StoredValue.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Sequence_BackingDatabase.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Sequence_Cachesize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Sequence_Decrement.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Sequence_Increment.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Sequence_Key.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Sequence_Max.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Sequence_Min.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Sequence_Wrap.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionConfig_InitTransactionCount.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionConfig_LockTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionConfig_Name.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionConfig_TxnTimeout.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_Aborted.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_Active.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_Begun.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_Committed.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_InitTxns.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_LastCheckpoint.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_LastCheckpointTime.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_LastID.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_MaxActive.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_MaxSnapshot.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_MaxTransactions.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_RegionLockNoWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_RegionLockWait.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_RegionSize.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_Restored.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_Snapshot.htm
share/doc/db5/csharp/html/P_BerkeleyDB_TransactionStats_Transactions.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Transaction_CommitToken.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Transaction_Id.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Transaction_Name.htm
share/doc/db5/csharp/html/P_BerkeleyDB_Transaction_Priority.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_ActiveTransaction.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_BTreeCursor.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_BTreeDatabase.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_BTreeDatabaseConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_BTreeStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_BadSecondaryException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_BaseDatabase.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_CompactConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_CompactData.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_Cursor.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_Database.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_DatabaseConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_DatabaseEntry.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_DatabaseEnvironment.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_DatabaseEnvironmentConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_DatabaseException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_DbChannel.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_DbSite.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_DbSiteConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_DeadlockException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_ForeignConflictException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_FullLogBufferException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_HashCursor.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_HashDatabase.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_HashDatabaseConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_HashStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_HeapDatabase.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_HeapDatabaseConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_HeapFullException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_HeapRecordId.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_HeapStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_JoinCursor.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_KeyEmptyException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_KeyExistException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_KeyRange.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_LeaseExpiredException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_LockNotGrantedException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_LockStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_LockingConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_LogConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_LogStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_LogVerifyConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_MPoolConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_MPoolFileStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_MPoolStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_MultipleDatabaseEntry.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_MultipleKeyDatabaseEntry.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_MutexConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_MutexStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_NotFoundException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_OldVersionException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_PageNotFoundException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_PreparedTransaction.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_QueueDatabase.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_QueueDatabaseConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_QueueStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_RecnoCursor.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_RecnoDatabase.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_RecnoDatabaseConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_RecnoStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_RepMgrStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_ReplicationConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_ReplicationStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_RunRecoveryException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_SecondaryBTreeDatabase.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_SecondaryBTreeDatabaseConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_SecondaryCursor.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_SecondaryDatabase.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_SecondaryDatabaseConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_SecondaryHashDatabase.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_SecondaryHashDatabaseConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_SecondaryQueueDatabase.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_SecondaryQueueDatabaseConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_SecondaryRecnoDatabase.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_SecondaryRecnoDatabaseConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_Sequence.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_SequenceConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_SequenceStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_Transaction.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_TransactionConfig.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_TransactionStats.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_VerificationException.htm
share/doc/db5/csharp/html/Properties_T_BerkeleyDB_VersionMismatchException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_AckPolicy.htm
share/doc/db5/csharp/html/T_BerkeleyDB_ActiveTransaction.htm
share/doc/db5/csharp/html/T_BerkeleyDB_AppendRecordDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_BTreeCompressDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_BTreeCursor.htm
share/doc/db5/csharp/html/T_BerkeleyDB_BTreeDatabase.htm
share/doc/db5/csharp/html/T_BerkeleyDB_BTreeDatabaseConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_BTreeDecompressDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_BTreeStats.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/T_BerkeleyDB_BackupOptions.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/T_BerkeleyDB_BadSecondaryException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_BaseCursor.htm
share/doc/db5/csharp/html/T_BerkeleyDB_BaseDatabase.htm
share/doc/db5/csharp/html/T_BerkeleyDB_ByteOrder.htm
share/doc/db5/csharp/html/T_BerkeleyDB_CacheInfo.htm
share/doc/db5/csharp/html/T_BerkeleyDB_CachePriority.htm
share/doc/db5/csharp/html/T_BerkeleyDB_CompactConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_CompactData.htm
share/doc/db5/csharp/html/T_BerkeleyDB_CreatePolicy.htm
share/doc/db5/csharp/html/T_BerkeleyDB_Cursor.htm
share/doc/db5/csharp/html/T_BerkeleyDB_CursorConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_Cursor_InsertLocation.htm
share/doc/db5/csharp/html/T_BerkeleyDB_Database.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DatabaseConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DatabaseEntry.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DatabaseEnvironment.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DatabaseEnvironmentConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DatabaseException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DatabaseFeedbackDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DatabaseFeedbackEvent.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DatabaseType.htm
share/doc/db5/csharp/html/T_BerkeleyDB_Database_VerifyOperation.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DbChannel.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DbSite.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DbSiteConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DbThreadID.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DeadlockException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DeadlockPolicy.htm
share/doc/db5/csharp/html/T_BerkeleyDB_DuplicatesPolicy.htm
share/doc/db5/csharp/html/T_BerkeleyDB_EncryptionAlgorithm.htm
share/doc/db5/csharp/html/T_BerkeleyDB_EntryComparisonDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_EntryPrefixComparisonDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_EnvironmentFeedbackDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_EnvironmentFeedbackEvent.htm
share/doc/db5/csharp/html/T_BerkeleyDB_EnvironmentID.htm
share/doc/db5/csharp/html/T_BerkeleyDB_ErrorCodes.htm
share/doc/db5/csharp/html/T_BerkeleyDB_ErrorFeedbackDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_EventNotifyDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_ForeignConflictException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_ForeignKeyDeleteAction.htm
share/doc/db5/csharp/html/T_BerkeleyDB_ForeignKeyNullifyDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_FullLogBufferException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_HashCursor.htm
share/doc/db5/csharp/html/T_BerkeleyDB_HashDatabase.htm
share/doc/db5/csharp/html/T_BerkeleyDB_HashDatabaseConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_HashFunctionDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_HashStats.htm
share/doc/db5/csharp/html/T_BerkeleyDB_HeapDatabase.htm
share/doc/db5/csharp/html/T_BerkeleyDB_HeapDatabaseConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_HeapFullException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_HeapRecordId.htm
share/doc/db5/csharp/html/T_BerkeleyDB_HeapStats.htm
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/csharp/html/T_BerkeleyDB_IBackup.htm
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/html/T_BerkeleyDB_Isolation.htm
share/doc/db5/csharp/html/T_BerkeleyDB_JoinCursor.htm
share/doc/db5/csharp/html/T_BerkeleyDB_KeyEmptyException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_KeyExistException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_KeyRange.htm
share/doc/db5/csharp/html/T_BerkeleyDB_LSN.htm
share/doc/db5/csharp/html/T_BerkeleyDB_LeaseExpiredException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_LockNotGrantedException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_LockStats.htm
share/doc/db5/csharp/html/T_BerkeleyDB_LockingConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_LockingInfo.htm
share/doc/db5/csharp/html/T_BerkeleyDB_LogConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_LogStats.htm
share/doc/db5/csharp/html/T_BerkeleyDB_LogVerifyConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_MPoolConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_MPoolFileStats.htm
share/doc/db5/csharp/html/T_BerkeleyDB_MPoolStats.htm
share/doc/db5/csharp/html/T_BerkeleyDB_MessageDispatchDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_MultipleDatabaseEntry.htm
share/doc/db5/csharp/html/T_BerkeleyDB_MultipleKeyDatabaseEntry.htm
share/doc/db5/csharp/html/T_BerkeleyDB_MutexConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_MutexStats.htm
share/doc/db5/csharp/html/T_BerkeleyDB_NotFoundException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_NotificationEvent.htm
share/doc/db5/csharp/html/T_BerkeleyDB_OldVersionException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_PageNotFoundException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_PreparedTransaction.htm
share/doc/db5/csharp/html/T_BerkeleyDB_QueueDatabase.htm
share/doc/db5/csharp/html/T_BerkeleyDB_QueueDatabaseConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_QueueStats.htm
share/doc/db5/csharp/html/T_BerkeleyDB_RecnoCursor.htm
share/doc/db5/csharp/html/T_BerkeleyDB_RecnoDatabase.htm
share/doc/db5/csharp/html/T_BerkeleyDB_RecnoDatabaseConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_RecnoStats.htm
share/doc/db5/csharp/html/T_BerkeleyDB_RepMgrSite.htm
share/doc/db5/csharp/html/T_BerkeleyDB_RepMgrStats.htm
share/doc/db5/csharp/html/T_BerkeleyDB_RepProcMsgResult.htm
share/doc/db5/csharp/html/T_BerkeleyDB_RepProcMsgResult_ProcMsgResult.htm
share/doc/db5/csharp/html/T_BerkeleyDB_ReplicationConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_ReplicationHostAddress.htm
share/doc/db5/csharp/html/T_BerkeleyDB_ReplicationStats.htm
share/doc/db5/csharp/html/T_BerkeleyDB_ReplicationTransportDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_RunRecoveryException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SecondaryBTreeDatabase.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SecondaryBTreeDatabaseConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SecondaryCursor.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SecondaryDatabase.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SecondaryDatabaseConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SecondaryHashDatabase.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SecondaryHashDatabaseConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SecondaryKeyGenDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SecondaryQueueDatabase.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SecondaryQueueDatabaseConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SecondaryRecnoDatabase.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SecondaryRecnoDatabaseConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_Sequence.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SequenceConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SequenceStats.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SetThreadIDDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_SetThreadNameDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_ThreadIsAliveDelegate.htm
share/doc/db5/csharp/html/T_BerkeleyDB_Transaction.htm
share/doc/db5/csharp/html/T_BerkeleyDB_TransactionAppliedStatus.htm
share/doc/db5/csharp/html/T_BerkeleyDB_TransactionConfig.htm
share/doc/db5/csharp/html/T_BerkeleyDB_TransactionConfig_LogFlush.htm
share/doc/db5/csharp/html/T_BerkeleyDB_TransactionStats.htm
share/doc/db5/csharp/html/T_BerkeleyDB_VerboseMessages.htm
share/doc/db5/csharp/html/T_BerkeleyDB_VerificationException.htm
share/doc/db5/csharp/html/T_BerkeleyDB_VersionMismatchException.htm
share/doc/db5/csharp/icons/CFW.gif
share/doc/db5/csharp/icons/Caution.gif
share/doc/db5/csharp/icons/CopyCode_h.gif
share/doc/db5/csharp/icons/LastChild.gif
share/doc/db5/csharp/icons/adm.gif
share/doc/db5/csharp/icons/adm_arch.gif
share/doc/db5/csharp/icons/adm_dev.gif
share/doc/db5/csharp/icons/adm_dev_arch.gif
share/doc/db5/csharp/icons/alert_caution.gif
share/doc/db5/csharp/icons/alert_note.gif
share/doc/db5/csharp/icons/alert_security.gif
share/doc/db5/csharp/icons/arch.gif
share/doc/db5/csharp/icons/big_adm.gif
share/doc/db5/csharp/icons/big_arch.gif
share/doc/db5/csharp/icons/big_dev.gif
share/doc/db5/csharp/icons/big_kw.gif
share/doc/db5/csharp/icons/box.gif
share/doc/db5/csharp/icons/collall.gif
share/doc/db5/csharp/icons/collapse.gif
share/doc/db5/csharp/icons/collapse_all.gif
share/doc/db5/csharp/icons/copycode.gif
share/doc/db5/csharp/icons/copycodeHighlight.gif
share/doc/db5/csharp/icons/dev.gif
share/doc/db5/csharp/icons/dev_arch.gif
share/doc/db5/csharp/icons/dropdown.gif
share/doc/db5/csharp/icons/dropdownHover.gif
share/doc/db5/csharp/icons/drpdown.gif
share/doc/db5/csharp/icons/drpdown_orange.gif
share/doc/db5/csharp/icons/drpdown_orange_up.gif
share/doc/db5/csharp/icons/drpup.gif
share/doc/db5/csharp/icons/exp.gif
share/doc/db5/csharp/icons/expall.gif
share/doc/db5/csharp/icons/expand_all.gif
share/doc/db5/csharp/icons/filter1a.gif
share/doc/db5/csharp/icons/filter1c.gif
share/doc/db5/csharp/icons/footer.gif
share/doc/db5/csharp/icons/gradient.gif
share/doc/db5/csharp/icons/greencheck.gif
share/doc/db5/csharp/icons/greychck.gif
share/doc/db5/csharp/icons/header_prev_next.jpg
share/doc/db5/csharp/icons/header_sql_tutorial_blank.jpg
share/doc/db5/csharp/icons/header_sql_tutorial_logo.GIF
share/doc/db5/csharp/icons/kw.gif
share/doc/db5/csharp/icons/kw_adm.gif
share/doc/db5/csharp/icons/kw_adm_arch.gif
share/doc/db5/csharp/icons/kw_adm_dev.gif
share/doc/db5/csharp/icons/kw_adm_dev_arch.gif
share/doc/db5/csharp/icons/kw_arch.gif
share/doc/db5/csharp/icons/kw_dev.gif
share/doc/db5/csharp/icons/kw_dev_arch.gif
share/doc/db5/csharp/icons/load.gif
share/doc/db5/csharp/icons/load_hover.gif
share/doc/db5/csharp/icons/note.gif
share/doc/db5/csharp/icons/pencil.GIF
share/doc/db5/csharp/icons/privclass.gif
share/doc/db5/csharp/icons/privdelegate.gif
share/doc/db5/csharp/icons/privenum.gif
share/doc/db5/csharp/icons/privenumeration.gif
share/doc/db5/csharp/icons/privevent.gif
share/doc/db5/csharp/icons/privextension.gif
share/doc/db5/csharp/icons/privfield.gif
share/doc/db5/csharp/icons/privinterface.gif
share/doc/db5/csharp/icons/privmethod.gif
share/doc/db5/csharp/icons/privproperty.gif
share/doc/db5/csharp/icons/privstructure.gif
share/doc/db5/csharp/icons/protclass.gif
share/doc/db5/csharp/icons/protdelegate.gif
share/doc/db5/csharp/icons/protenum.gif
share/doc/db5/csharp/icons/protenumeration.gif
share/doc/db5/csharp/icons/protevent.gif
share/doc/db5/csharp/icons/protextension.gif
share/doc/db5/csharp/icons/protfield.gif
share/doc/db5/csharp/icons/protinterface.gif
share/doc/db5/csharp/icons/protmethod.gif
share/doc/db5/csharp/icons/protoperator.gif
share/doc/db5/csharp/icons/protproperty.gif
share/doc/db5/csharp/icons/protstructure.gif
share/doc/db5/csharp/icons/pubclass.gif
share/doc/db5/csharp/icons/pubdelegate.gif
share/doc/db5/csharp/icons/pubenum.gif
share/doc/db5/csharp/icons/pubenumeration.gif
share/doc/db5/csharp/icons/pubevent.gif
share/doc/db5/csharp/icons/pubextension.gif
share/doc/db5/csharp/icons/pubfield.gif
share/doc/db5/csharp/icons/pubinterface.gif
share/doc/db5/csharp/icons/pubmethod.gif
share/doc/db5/csharp/icons/puboperator.gif
share/doc/db5/csharp/icons/pubproperty.gif
share/doc/db5/csharp/icons/pubstructure.gif
share/doc/db5/csharp/icons/requirements1a.gif
share/doc/db5/csharp/icons/requirements1c.gif
share/doc/db5/csharp/icons/save.gif
share/doc/db5/csharp/icons/save_hover.gif
share/doc/db5/csharp/icons/security.gif
share/doc/db5/csharp/icons/seealso1a.gif
share/doc/db5/csharp/icons/seealso1c.gif
share/doc/db5/csharp/icons/static.gif
share/doc/db5/csharp/icons/xna.gif
share/doc/db5/csharp/scripts/CheckboxMenu.js
share/doc/db5/csharp/scripts/CommonUtilities.js
share/doc/db5/csharp/scripts/Dropdown.js
share/doc/db5/csharp/scripts/EventUtilities.js
share/doc/db5/csharp/scripts/SplitScreen.js
share/doc/db5/csharp/scripts/highlight.js
share/doc/db5/csharp/scripts/script_feedBack.js
share/doc/db5/csharp/scripts/script_manifold.js
share/doc/db5/csharp/styles/Presentation.css
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/csharp/styles/Whidbey/presentation.css
share/doc/db5/csharp/styles/highlight.css
share/doc/db5/gsg/C/BerkeleyDB-Core-C-GSG.pdf
share/doc/db5/gsg/C/CoreCursorUsage.html
share/doc/db5/gsg/C/CoreDBAdmin.html
share/doc/db5/gsg/C/CoreDbUsage.html
share/doc/db5/gsg/C/CoreEnvUsage.html
share/doc/db5/gsg/C/Cursors.html
share/doc/db5/gsg/C/DBEntry.html
share/doc/db5/gsg/C/DBOpenFlags.html
share/doc/db5/gsg/C/DbUsage.html
share/doc/db5/gsg/C/DeleteEntryWCursor.html
share/doc/db5/gsg/C/Positioning.html
share/doc/db5/gsg/C/PutEntryWCursor.html
share/doc/db5/gsg/C/ReplacingEntryWCursor.html
share/doc/db5/gsg/C/accessmethods.html
share/doc/db5/gsg/C/btree.html
share/doc/db5/gsg/C/cachesize.html
share/doc/db5/gsg/C/concepts.html
share/doc/db5/gsg/C/coredbclose.html
share/doc/db5/gsg/C/coreindexusage.html
share/doc/db5/gsg/C/cstructs.html
share/doc/db5/gsg/C/databaseLimits.html
share/doc/db5/gsg/C/databases.html
share/doc/db5/gsg/C/dbErrorReporting.html
share/doc/db5/gsg/C/dbconfig.html
share/doc/db5/gsg/C/environments.html
share/doc/db5/gsg/C/gettingStarted.css
share/doc/db5/gsg/C/gettingit.html
share/doc/db5/gsg/C/index.html
share/doc/db5/gsg/C/indexes.html
share/doc/db5/gsg/C/introduction.html
share/doc/db5/gsg/C/joins.html
share/doc/db5/gsg/C/keyCreator.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/gsg/C/moreinfo.html
share/doc/db5/gsg/C/preface.html
share/doc/db5/gsg/C/readSecondary.html
share/doc/db5/gsg/C/returns.html
share/doc/db5/gsg/C/secondaryCursor.html
share/doc/db5/gsg/C/secondaryDelete.html
share/doc/db5/gsg/C/usingDbt.html
share/doc/db5/gsg/CXX/BerkeleyDB-Core-Cxx-GSG.pdf
share/doc/db5/gsg/CXX/CoreCursorUsage.html
share/doc/db5/gsg/CXX/CoreDBAdmin.html
share/doc/db5/gsg/CXX/CoreDbCXXUsage.html
share/doc/db5/gsg/CXX/CoreEnvUsage.html
share/doc/db5/gsg/CXX/Cursors.html
share/doc/db5/gsg/CXX/DBEntry.html
share/doc/db5/gsg/CXX/DBOpenFlags.html
share/doc/db5/gsg/CXX/DbCXXUsage.html
share/doc/db5/gsg/CXX/DeleteEntryWCursor.html
share/doc/db5/gsg/CXX/Positioning.html
share/doc/db5/gsg/CXX/PutEntryWCursor.html
share/doc/db5/gsg/CXX/ReplacingEntryWCursor.html
share/doc/db5/gsg/CXX/accessmethods.html
share/doc/db5/gsg/CXX/btree.html
share/doc/db5/gsg/CXX/cachesize.html
share/doc/db5/gsg/CXX/concepts.html
share/doc/db5/gsg/CXX/coreExceptions.html
share/doc/db5/gsg/CXX/coredbclose.html
share/doc/db5/gsg/CXX/coreindexusage.html
share/doc/db5/gsg/CXX/databaseLimits.html
share/doc/db5/gsg/CXX/databases.html
share/doc/db5/gsg/CXX/dbErrorReporting.html
share/doc/db5/gsg/CXX/dbconfig.html
share/doc/db5/gsg/CXX/environments.html
share/doc/db5/gsg/CXX/gettingStarted.css
share/doc/db5/gsg/CXX/gettingit.html
share/doc/db5/gsg/CXX/index.html
share/doc/db5/gsg/CXX/indexes.html
share/doc/db5/gsg/CXX/introduction.html
share/doc/db5/gsg/CXX/joins.html
share/doc/db5/gsg/CXX/keyCreator.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/gsg/CXX/moreinfo.html
share/doc/db5/gsg/CXX/preface.html
share/doc/db5/gsg/CXX/readSecondary.html
share/doc/db5/gsg/CXX/returns.html
share/doc/db5/gsg/CXX/secondaryCursor.html
share/doc/db5/gsg/CXX/secondaryDelete.html
share/doc/db5/gsg/CXX/usingDbt.html
share/doc/db5/gsg/JAVA/BerkeleyDB-Core-JAVA-GSG.pdf
share/doc/db5/gsg/JAVA/CoreEnvUsage.html
share/doc/db5/gsg/JAVA/CoreJavaUsage.html
share/doc/db5/gsg/JAVA/Cursors.html
share/doc/db5/gsg/JAVA/DBAdmin.html
share/doc/db5/gsg/JAVA/DBEntry.html
share/doc/db5/gsg/JAVA/DeleteEntryWCursor.html
share/doc/db5/gsg/JAVA/Env.html
share/doc/db5/gsg/JAVA/EnvClose.html
share/doc/db5/gsg/JAVA/EnvProps.html
share/doc/db5/gsg/JAVA/Positioning.html
share/doc/db5/gsg/JAVA/PutEntryWCursor.html
share/doc/db5/gsg/JAVA/ReplacingEntryWCursor.html
share/doc/db5/gsg/JAVA/accessmethods.html
share/doc/db5/gsg/JAVA/baseapi.html
share/doc/db5/gsg/JAVA/bindAPI.html
share/doc/db5/gsg/JAVA/btree.html
share/doc/db5/gsg/JAVA/cachesize.html
share/doc/db5/gsg/JAVA/coreExceptions.html
share/doc/db5/gsg/JAVA/coredbclose.html
share/doc/db5/gsg/JAVA/cursorJavaUsage.html
share/doc/db5/gsg/JAVA/dataaccessorclass.html
share/doc/db5/gsg/JAVA/databaseLimits.html
share/doc/db5/gsg/JAVA/databases.html
share/doc/db5/gsg/JAVA/dbErrorReporting.html
share/doc/db5/gsg/JAVA/dbconfig.html
share/doc/db5/gsg/JAVA/dbprops.html
share/doc/db5/gsg/JAVA/dbtJavaUsage.html
share/doc/db5/gsg/JAVA/dpl.html
share/doc/db5/gsg/JAVA/dpl_delete.html
share/doc/db5/gsg/JAVA/dpl_entityjoin.html
share/doc/db5/gsg/JAVA/dpl_example.html
share/doc/db5/gsg/JAVA/dpl_exampledatabaseput.html
share/doc/db5/gsg/JAVA/dpl_exampleinventoryread.html
share/doc/db5/gsg/JAVA/dpl_replace.html
share/doc/db5/gsg/JAVA/dplindexcreate.html
share/doc/db5/gsg/JAVA/getmultiple.html
share/doc/db5/gsg/JAVA/gettingStarted.css
share/doc/db5/gsg/JAVA/gettingit.html
share/doc/db5/gsg/JAVA/index.html
share/doc/db5/gsg/JAVA/indexes.html
share/doc/db5/gsg/JAVA/introduction.html
share/doc/db5/gsg/JAVA/inventoryclass.html
share/doc/db5/gsg/JAVA/javadplconcepts.html
share/doc/db5/gsg/JAVA/javaindexusage.html
share/doc/db5/gsg/JAVA/joins.html
share/doc/db5/gsg/JAVA/keyCreator.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/gsg/JAVA/moreinfo.html
share/doc/db5/gsg/JAVA/mydbenv-persist.html
share/doc/db5/gsg/JAVA/persist_access.html
share/doc/db5/gsg/JAVA/persist_first.html
share/doc/db5/gsg/JAVA/persist_index.html
share/doc/db5/gsg/JAVA/persistobject.html
share/doc/db5/gsg/JAVA/preface.html
share/doc/db5/gsg/JAVA/readSecondary.html
share/doc/db5/gsg/JAVA/returns.html
share/doc/db5/gsg/JAVA/saveret.html
share/doc/db5/gsg/JAVA/secondaryCursor.html
share/doc/db5/gsg/JAVA/secondaryDelete.html
share/doc/db5/gsg/JAVA/secondaryProps.html
share/doc/db5/gsg/JAVA/simpleda.html
share/doc/db5/gsg/JAVA/simpleget.html
share/doc/db5/gsg/JAVA/simpleput.html
share/doc/db5/gsg/JAVA/usingDbt.html
share/doc/db5/gsg_db_rep/C/Replication-C-GSG.pdf
share/doc/db5/gsg_db_rep/C/addfeatures.html
share/doc/db5/gsg_db_rep/C/apioverview.html
share/doc/db5/gsg_db_rep/C/autoinit.html
share/doc/db5/gsg_db_rep/C/bulk.html
share/doc/db5/gsg_db_rep/C/c2ctransfer.html
share/doc/db5/gsg_db_rep/C/elections.html
share/doc/db5/gsg_db_rep/C/electiontimes.html
share/doc/db5/gsg_db_rep/C/exampledoloop.html
share/doc/db5/gsg_db_rep/C/fmwrkconnectretry.html
share/doc/db5/gsg_db_rep/C/fwrkmasterreplica.html
share/doc/db5/gsg_db_rep/C/fwrkpermmessage.html
share/doc/db5/gsg_db_rep/C/gettingStarted.css
share/doc/db5/gsg_db_rep/C/heartbeats.html
share/doc/db5/gsg_db_rep/C/index.html
share/doc/db5/gsg_db_rep/C/introduction.html
share/doc/db5/gsg_db_rep/C/manageblock.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/gsg_db_rep/C/moreinfo.html
share/doc/db5/gsg_db_rep/C/permmessages.html
share/doc/db5/gsg_db_rep/C/preface.html
share/doc/db5/gsg_db_rep/C/processingloop.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/gsg_db_rep/C/rep_init_code.html
share/doc/db5/gsg_db_rep/C/repadvantage.html
share/doc/db5/gsg_db_rep/C/repapp.html
share/doc/db5/gsg_db_rep/C/repmgr_init_example_c.html
share/doc/db5/gsg_db_rep/C/rywc.html
share/doc/db5/gsg_db_rep/C/simpleprogramlisting.html
share/doc/db5/gsg_db_rep/C/txnapp.html
share/doc/db5/gsg_db_rep/CXX/Replication-CXX-GSG.pdf
share/doc/db5/gsg_db_rep/CXX/addfeatures.html
share/doc/db5/gsg_db_rep/CXX/apioverview.html
share/doc/db5/gsg_db_rep/CXX/autoinit.html
share/doc/db5/gsg_db_rep/CXX/bulk.html
share/doc/db5/gsg_db_rep/CXX/c2ctransfer.html
share/doc/db5/gsg_db_rep/CXX/elections.html
share/doc/db5/gsg_db_rep/CXX/electiontimes.html
share/doc/db5/gsg_db_rep/CXX/exampledoloop.html
share/doc/db5/gsg_db_rep/CXX/fmwrkconnectretry.html
share/doc/db5/gsg_db_rep/CXX/fwrkmasterreplica.html
share/doc/db5/gsg_db_rep/CXX/fwrkpermmessage.html
share/doc/db5/gsg_db_rep/CXX/gettingStarted.css
share/doc/db5/gsg_db_rep/CXX/heartbeats.html
share/doc/db5/gsg_db_rep/CXX/index.html
share/doc/db5/gsg_db_rep/CXX/introduction.html
share/doc/db5/gsg_db_rep/CXX/manageblock.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/gsg_db_rep/CXX/moreinfo.html
share/doc/db5/gsg_db_rep/CXX/permmessages.html
share/doc/db5/gsg_db_rep/CXX/preface.html
share/doc/db5/gsg_db_rep/CXX/processingloop.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/gsg_db_rep/CXX/rep_init_code.html
share/doc/db5/gsg_db_rep/CXX/repadvantage.html
share/doc/db5/gsg_db_rep/CXX/repapp.html
share/doc/db5/gsg_db_rep/CXX/repmgr_init_example_c.html
share/doc/db5/gsg_db_rep/CXX/rywc.html
share/doc/db5/gsg_db_rep/CXX/simpleprogramlisting.html
share/doc/db5/gsg_db_rep/CXX/txnapp.html
share/doc/db5/gsg_db_rep/JAVA/Replication-JAVA-GSG.pdf
share/doc/db5/gsg_db_rep/JAVA/addfeatures.html
share/doc/db5/gsg_db_rep/JAVA/apioverview.html
share/doc/db5/gsg_db_rep/JAVA/autoinit.html
share/doc/db5/gsg_db_rep/JAVA/bulk.html
share/doc/db5/gsg_db_rep/JAVA/c2ctransfer.html
share/doc/db5/gsg_db_rep/JAVA/elections.html
share/doc/db5/gsg_db_rep/JAVA/electiontimes.html
share/doc/db5/gsg_db_rep/JAVA/exampledoloop.html
share/doc/db5/gsg_db_rep/JAVA/fmwrkconnectretry.html
share/doc/db5/gsg_db_rep/JAVA/fwrkmasterreplica.html
share/doc/db5/gsg_db_rep/JAVA/fwrkpermmessage.html
share/doc/db5/gsg_db_rep/JAVA/gettingStarted.css
share/doc/db5/gsg_db_rep/JAVA/heartbeats.html
share/doc/db5/gsg_db_rep/JAVA/index.html
share/doc/db5/gsg_db_rep/JAVA/introduction.html
share/doc/db5/gsg_db_rep/JAVA/manageblock.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/gsg_db_rep/JAVA/moreinfo.html
share/doc/db5/gsg_db_rep/JAVA/permmessages.html
share/doc/db5/gsg_db_rep/JAVA/preface.html
share/doc/db5/gsg_db_rep/JAVA/processingloop.html
share/doc/db5/gsg_db_rep/JAVA/repadvantage.html
share/doc/db5/gsg_db_rep/JAVA/repapp.html
share/doc/db5/gsg_db_rep/JAVA/repmgr_init_example_c.html
share/doc/db5/gsg_db_rep/JAVA/rywc.html
share/doc/db5/gsg_db_rep/JAVA/simpleprogramlisting.html
share/doc/db5/gsg_db_rep/JAVA/txnapp.html
share/doc/db5/gsg_txn/C/BerkeleyDB-Core-C-Txn.pdf
share/doc/db5/gsg_txn/C/abortresults.html
share/doc/db5/gsg_txn/C/apireq.html
share/doc/db5/gsg_txn/C/architectrecovery.html
share/doc/db5/gsg_txn/C/autocommit.html
share/doc/db5/gsg_txn/C/backuprestore.html
share/doc/db5/gsg_txn/C/blocking_deadlocks.html
share/doc/db5/gsg_txn/C/deadlock.jpg
share/doc/db5/gsg_txn/C/enabletxn.html
share/doc/db5/gsg_txn/C/envopen.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/gsg_txn/C/exclusivelock.html
share/doc/db5/gsg_txn/C/filemanagement.html
share/doc/db5/gsg_txn/C/gettingStarted.css
share/doc/db5/gsg_txn/C/hotfailover.html
share/doc/db5/gsg_txn/C/index.html
share/doc/db5/gsg_txn/C/inmem_txnexample_c.html
share/doc/db5/gsg_txn/C/introduction.html
share/doc/db5/gsg_txn/C/isolation.html
share/doc/db5/gsg_txn/C/lockingsubsystem.html
share/doc/db5/gsg_txn/C/logconfig.html
share/doc/db5/gsg_txn/C/logfileremoval.html
share/doc/db5/gsg_txn/C/maxtxns.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/gsg_txn/C/moreinfo.html
share/doc/db5/gsg_txn/C/multithread-intro.html
share/doc/db5/gsg_txn/C/nestedtxn.html
share/doc/db5/gsg_txn/C/nodurabletxn.html
share/doc/db5/gsg_txn/C/perftune-intro.html
share/doc/db5/gsg_txn/C/preface.html
share/doc/db5/gsg_txn/C/readblock.jpg
share/doc/db5/gsg_txn/C/readmodifywrite.html
share/doc/db5/gsg_txn/C/recovery-intro.html
share/doc/db5/gsg_txn/C/recovery.html
share/doc/db5/gsg_txn/C/reversesplit.html
Changes 5.2.36: * Updated the JDBC version shipped with Berkeley DB to support Oracle Java Embedded Client. * Fixed several memory leaks in the Online Backup API. * Fix a bug in the SQL API when using a blob field with a lot of content and multiple concurrent connections to the database. * Update EID_MASTER to be public static final so that it will be exposed in Java docs. * Fixed a bug where BFile module crashes when using BFile handle for SQL expressions interface on 64 bit platforms. * Fixed a bug where, on systems without FTRUNCATE, db_verify will return an error for truncated heap databases. * Let ADO.NET solution building skip SQLite Designer and Linq by default. * Fixed a bug that could cause BDB to run out of avaliable mutexes when renaming many databases. * Fixed a bug where the metadata page in hash databases would not be flushed to disk. * Fixed a bug where printlog would fail on in-memory heap databases. * Fixed a bug that would cause verify to call the wrong compare function if there are user defined compare functions used and the database has multilevel off page sorted duplicate trees. * Fixed a bug where two processes accessing the same table and one of those drops the table and recreates, the second process can crash. * Fixed a bug where it was possible to panic a heap database without an error message being printed. * Fixed a bug where it would fail to put records with overflow keys into hash duplicate database. * Fixed a bug where multiple Replication Manager processes would sometimes not all conform to replication-group-aware log archiving. * more...
2011-10-03 12:54:45 +02:00
share/doc/db5/gsg_txn/C/rwlocks1-pdf.jpg
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/gsg_txn/C/rwlocks1.jpg
share/doc/db5/gsg_txn/C/simplelock-pdf.jpg
share/doc/db5/gsg_txn/C/simplelock.jpg
share/doc/db5/gsg_txn/C/sysfailure.html
share/doc/db5/gsg_txn/C/txn_ccursor.html
share/doc/db5/gsg_txn/C/txnconcurrency.html
share/doc/db5/gsg_txn/C/txncursor.html
share/doc/db5/gsg_txn/C/txnexample_c.html
share/doc/db5/gsg_txn/C/txnindices.html
share/doc/db5/gsg_txn/C/txnnowait.html
share/doc/db5/gsg_txn/C/usingtxns.html
share/doc/db5/gsg_txn/C/wrapup.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/gsg_txn/C/writeblock.jpg
share/doc/db5/gsg_txn/CXX/BerkeleyDB-Core-Cxx-Txn.pdf
share/doc/db5/gsg_txn/CXX/abortresults.html
share/doc/db5/gsg_txn/CXX/apireq.html
share/doc/db5/gsg_txn/CXX/architectrecovery.html
share/doc/db5/gsg_txn/CXX/autocommit.html
share/doc/db5/gsg_txn/CXX/backuprestore.html
share/doc/db5/gsg_txn/CXX/blocking_deadlocks.html
share/doc/db5/gsg_txn/CXX/deadlock.jpg
share/doc/db5/gsg_txn/CXX/enabletxn.html
share/doc/db5/gsg_txn/CXX/envopen.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/gsg_txn/CXX/exclusivelock.html
share/doc/db5/gsg_txn/CXX/filemanagement.html
share/doc/db5/gsg_txn/CXX/gettingStarted.css
share/doc/db5/gsg_txn/CXX/hotfailover.html
share/doc/db5/gsg_txn/CXX/index.html
share/doc/db5/gsg_txn/CXX/inmem_txnexample_c.html
share/doc/db5/gsg_txn/CXX/introduction.html
share/doc/db5/gsg_txn/CXX/isolation.html
share/doc/db5/gsg_txn/CXX/lockingsubsystem.html
share/doc/db5/gsg_txn/CXX/logconfig.html
share/doc/db5/gsg_txn/CXX/logfileremoval.html
share/doc/db5/gsg_txn/CXX/maxtxns.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/gsg_txn/CXX/moreinfo.html
share/doc/db5/gsg_txn/CXX/multithread-intro.html
share/doc/db5/gsg_txn/CXX/nestedtxn.html
share/doc/db5/gsg_txn/CXX/nodurabletxn.html
share/doc/db5/gsg_txn/CXX/perftune-intro.html
share/doc/db5/gsg_txn/CXX/preface.html
share/doc/db5/gsg_txn/CXX/readblock.jpg
share/doc/db5/gsg_txn/CXX/readmodifywrite.html
share/doc/db5/gsg_txn/CXX/recovery-intro.html
share/doc/db5/gsg_txn/CXX/recovery.html
share/doc/db5/gsg_txn/CXX/reversesplit.html
Changes 5.2.36: * Updated the JDBC version shipped with Berkeley DB to support Oracle Java Embedded Client. * Fixed several memory leaks in the Online Backup API. * Fix a bug in the SQL API when using a blob field with a lot of content and multiple concurrent connections to the database. * Update EID_MASTER to be public static final so that it will be exposed in Java docs. * Fixed a bug where BFile module crashes when using BFile handle for SQL expressions interface on 64 bit platforms. * Fixed a bug where, on systems without FTRUNCATE, db_verify will return an error for truncated heap databases. * Let ADO.NET solution building skip SQLite Designer and Linq by default. * Fixed a bug that could cause BDB to run out of avaliable mutexes when renaming many databases. * Fixed a bug where the metadata page in hash databases would not be flushed to disk. * Fixed a bug where printlog would fail on in-memory heap databases. * Fixed a bug that would cause verify to call the wrong compare function if there are user defined compare functions used and the database has multilevel off page sorted duplicate trees. * Fixed a bug where two processes accessing the same table and one of those drops the table and recreates, the second process can crash. * Fixed a bug where it was possible to panic a heap database without an error message being printed. * Fixed a bug where it would fail to put records with overflow keys into hash duplicate database. * Fixed a bug where multiple Replication Manager processes would sometimes not all conform to replication-group-aware log archiving. * more...
2011-10-03 12:54:45 +02:00
share/doc/db5/gsg_txn/CXX/rwlocks1-pdf.jpg
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/gsg_txn/CXX/rwlocks1.jpg
share/doc/db5/gsg_txn/CXX/simplelock-pdf.jpg
share/doc/db5/gsg_txn/CXX/simplelock.jpg
share/doc/db5/gsg_txn/CXX/sysfailure.html
share/doc/db5/gsg_txn/CXX/txn_ccursor.html
share/doc/db5/gsg_txn/CXX/txnconcurrency.html
share/doc/db5/gsg_txn/CXX/txncursor.html
share/doc/db5/gsg_txn/CXX/txnexample_c.html
share/doc/db5/gsg_txn/CXX/txnindices.html
share/doc/db5/gsg_txn/CXX/txnnowait.html
share/doc/db5/gsg_txn/CXX/usingtxns.html
share/doc/db5/gsg_txn/CXX/wrapup.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/gsg_txn/CXX/writeblock.jpg
share/doc/db5/gsg_txn/JAVA/BerkeleyDB-Core-JAVA-Txn.pdf
share/doc/db5/gsg_txn/JAVA/abortresults.html
share/doc/db5/gsg_txn/JAVA/apireq.html
share/doc/db5/gsg_txn/JAVA/architectrecovery.html
share/doc/db5/gsg_txn/JAVA/autocommit.html
share/doc/db5/gsg_txn/JAVA/backuprestore.html
share/doc/db5/gsg_txn/JAVA/blocking_deadlocks.html
share/doc/db5/gsg_txn/JAVA/deadlock.jpg
share/doc/db5/gsg_txn/JAVA/enabletxn.html
share/doc/db5/gsg_txn/JAVA/envopen.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/gsg_txn/JAVA/exclusivelock.html
share/doc/db5/gsg_txn/JAVA/filemanagement.html
share/doc/db5/gsg_txn/JAVA/gettingStarted.css
share/doc/db5/gsg_txn/JAVA/hotfailover.html
share/doc/db5/gsg_txn/JAVA/index.html
share/doc/db5/gsg_txn/JAVA/inmem_txnexample_java.html
share/doc/db5/gsg_txn/JAVA/introduction.html
share/doc/db5/gsg_txn/JAVA/isolation.html
share/doc/db5/gsg_txn/JAVA/lockingsubsystem.html
share/doc/db5/gsg_txn/JAVA/logconfig.html
share/doc/db5/gsg_txn/JAVA/logfileremoval.html
share/doc/db5/gsg_txn/JAVA/maxtxns.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/gsg_txn/JAVA/moreinfo.html
share/doc/db5/gsg_txn/JAVA/multithread-intro.html
share/doc/db5/gsg_txn/JAVA/nestedtxn.html
share/doc/db5/gsg_txn/JAVA/nodurabletxn.html
share/doc/db5/gsg_txn/JAVA/perftune-intro.html
share/doc/db5/gsg_txn/JAVA/preface.html
share/doc/db5/gsg_txn/JAVA/readblock.jpg
share/doc/db5/gsg_txn/JAVA/readmodifywrite.html
share/doc/db5/gsg_txn/JAVA/recovery-intro.html
share/doc/db5/gsg_txn/JAVA/recovery.html
share/doc/db5/gsg_txn/JAVA/reversesplit.html
Changes 5.2.36: * Updated the JDBC version shipped with Berkeley DB to support Oracle Java Embedded Client. * Fixed several memory leaks in the Online Backup API. * Fix a bug in the SQL API when using a blob field with a lot of content and multiple concurrent connections to the database. * Update EID_MASTER to be public static final so that it will be exposed in Java docs. * Fixed a bug where BFile module crashes when using BFile handle for SQL expressions interface on 64 bit platforms. * Fixed a bug where, on systems without FTRUNCATE, db_verify will return an error for truncated heap databases. * Let ADO.NET solution building skip SQLite Designer and Linq by default. * Fixed a bug that could cause BDB to run out of avaliable mutexes when renaming many databases. * Fixed a bug where the metadata page in hash databases would not be flushed to disk. * Fixed a bug where printlog would fail on in-memory heap databases. * Fixed a bug that would cause verify to call the wrong compare function if there are user defined compare functions used and the database has multilevel off page sorted duplicate trees. * Fixed a bug where two processes accessing the same table and one of those drops the table and recreates, the second process can crash. * Fixed a bug where it was possible to panic a heap database without an error message being printed. * Fixed a bug where it would fail to put records with overflow keys into hash duplicate database. * Fixed a bug where multiple Replication Manager processes would sometimes not all conform to replication-group-aware log archiving. * more...
2011-10-03 12:54:45 +02:00
share/doc/db5/gsg_txn/JAVA/rwlocks1-pdf.jpg
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/gsg_txn/JAVA/rwlocks1.jpg
share/doc/db5/gsg_txn/JAVA/simplelock-pdf.jpg
share/doc/db5/gsg_txn/JAVA/simplelock.jpg
share/doc/db5/gsg_txn/JAVA/sysfailure.html
share/doc/db5/gsg_txn/JAVA/txn_ccursor.html
share/doc/db5/gsg_txn/JAVA/txnconcurrency.html
share/doc/db5/gsg_txn/JAVA/txncursor.html
share/doc/db5/gsg_txn/JAVA/txnexample_dpl.html
share/doc/db5/gsg_txn/JAVA/txnexample_java.html
share/doc/db5/gsg_txn/JAVA/txnindices.html
share/doc/db5/gsg_txn/JAVA/txnnowait.html
share/doc/db5/gsg_txn/JAVA/usingtxns.html
share/doc/db5/gsg_txn/JAVA/wrapup.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/gsg_txn/JAVA/writeblock.jpg
share/doc/db5/index.html
share/doc/db5/installation/BDB_Installation.pdf
share/doc/db5/installation/arch_bigpic.gif
share/doc/db5/installation/arch_smallpic.gif
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/installation/build_android_config.html
share/doc/db5/installation/build_android_intro.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/installation/build_android_jdbc.html
share/doc/db5/installation/build_unix.html
share/doc/db5/installation/build_unix_aix.html
share/doc/db5/installation/build_unix_conf.html
share/doc/db5/installation/build_unix_db_nosync.html
share/doc/db5/installation/build_unix_encrypt.html
share/doc/db5/installation/build_unix_flags.html
share/doc/db5/installation/build_unix_freebsd.html
share/doc/db5/installation/build_unix_install.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/installation/build_unix_iphone.html
share/doc/db5/installation/build_unix_irix.html
share/doc/db5/installation/build_unix_linux.html
share/doc/db5/installation/build_unix_macosx.html
share/doc/db5/installation/build_unix_notes.html
share/doc/db5/installation/build_unix_qnx.html
share/doc/db5/installation/build_unix_sco.html
share/doc/db5/installation/build_unix_shlib.html
share/doc/db5/installation/build_unix_small.html
share/doc/db5/installation/build_unix_solaris.html
share/doc/db5/installation/build_unix_sql.html
share/doc/db5/installation/build_unix_stacksize.html
share/doc/db5/installation/build_unix_sunos.html
share/doc/db5/installation/build_unix_test.html
share/doc/db5/installation/build_vxworks.html
share/doc/db5/installation/build_vxworks_faq.html
share/doc/db5/installation/build_vxworks_notes.html
share/doc/db5/installation/build_win.html
share/doc/db5/installation/build_win_csharp.html
share/doc/db5/installation/build_win_faq.html
share/doc/db5/installation/build_win_java.html
share/doc/db5/installation/build_win_notes.html
share/doc/db5/installation/build_win_small.html
share/doc/db5/installation/build_win_sql.html
share/doc/db5/installation/build_win_tcl.html
share/doc/db5/installation/build_win_test.html
share/doc/db5/installation/build_wince.html
share/doc/db5/installation/build_wince_faq.html
share/doc/db5/installation/build_wince_notes.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/installation/ch01s02.html
share/doc/db5/installation/changelog_4_8.html
share/doc/db5/installation/changelog_5_0.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/installation/changelog_5_1.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/installation/changelog_5_2.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/installation/changelog_5_3.html
share/doc/db5/installation/cross_compile_unix.html
share/doc/db5/installation/debug.html
share/doc/db5/installation/debug_compile.html
share/doc/db5/installation/debug_printlog.html
share/doc/db5/installation/debug_runtime.html
share/doc/db5/installation/gettingStarted.css
share/doc/db5/installation/index.html
share/doc/db5/installation/install.html
share/doc/db5/installation/install_multiple.html
share/doc/db5/installation/introduction.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/installation/moreinfo.html
share/doc/db5/installation/preface.html
share/doc/db5/installation/test.html
share/doc/db5/installation/test_faq.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/installation/upgrade_11gr2_51_dpl_recompile.html
share/doc/db5/installation/upgrade_11gr2_51_mod_db4_unsupp.html
share/doc/db5/installation/upgrade_11gr2_51_sqlite_ver.html
share/doc/db5/installation/upgrade_11gr2_51_src_reorg.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/installation/upgrade_11gr2_52_bit_cmp_win.html
share/doc/db5/installation/upgrade_11gr2_52_dyn_env.html
share/doc/db5/installation/upgrade_11gr2_52_excl_txn_sql.html
share/doc/db5/installation/upgrade_11gr2_52_grp_mbr.html
share/doc/db5/installation/upgrade_11gr2_52_heap.html
share/doc/db5/installation/upgrade_11gr2_52_hot_backup.html
share/doc/db5/installation/upgrade_11gr2_52_mvcc_sql.html
share/doc/db5/installation/upgrade_11gr2_52_rep_2site_strict.html
share/doc/db5/installation/upgrade_11gr2_52_rep_dbt_readonly.html
share/doc/db5/installation/upgrade_11gr2_52_rep_sql.html
share/doc/db5/installation/upgrade_11gr2_52_repmgr_channels.html
share/doc/db5/installation/upgrade_11gr2_52_seq_sql.html
share/doc/db5/installation/upgrade_11gr2_52_sqlite_ver.html
share/doc/db5/installation/upgrade_11gr2_52_xa.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/installation/upgrade_11gr2_53_build_windows.html
share/doc/db5/installation/upgrade_11gr2_53_conn_status.html
share/doc/db5/installation/upgrade_11gr2_53_excl.html
share/doc/db5/installation/upgrade_11gr2_53_heap_regionsize.html
share/doc/db5/installation/upgrade_11gr2_53_hotbackup.html
share/doc/db5/installation/upgrade_11gr2_53_jdbc.html
share/doc/db5/installation/upgrade_11gr2_53_meta_dir.html
share/doc/db5/installation/upgrade_11gr2_53_sql_build.html
share/doc/db5/installation/upgrade_11gr2_53_sql_pragma.html
share/doc/db5/installation/upgrade_11gr2_53_sql_rep.html
share/doc/db5/installation/upgrade_11gr2_53_xa_mvcc.html
share/doc/db5/installation/upgrade_11gr2_autoinit.html
share/doc/db5/installation/upgrade_11gr2_dbsqlcodegen.html
share/doc/db5/installation/upgrade_11gr2_remsupp.html
share/doc/db5/installation/upgrade_11gr2_repmgr.html
share/doc/db5/installation/upgrade_11gr2_toc.html
share/doc/db5/installation/upgrade_4_8_disk.html
share/doc/db5/installation/upgrade_4_8_dpl.html
share/doc/db5/installation/upgrade_4_8_fcntl.html
share/doc/db5/installation/upgrade_4_8_mpool.html
share/doc/db5/installation/upgrade_4_8_toc.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/installation/upgrade_51_toc.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/installation/upgrade_52_toc.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/installation/upgrade_53_toc.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/installation/win_additional_options.html
share/doc/db5/installation/win_build64.html
share/doc/db5/installation/win_build_cxx.html
share/doc/db5/installation/win_build_cygwin.html
share/doc/db5/installation/win_build_dist_dll.html
share/doc/db5/installation/win_build_stl.html
share/doc/db5/java/allclasses-frame.html
share/doc/db5/java/allclasses-noframe.html
share/doc/db5/java/com/sleepycat/bind/ByteArrayBinding.html
share/doc/db5/java/com/sleepycat/bind/EntityBinding.html
share/doc/db5/java/com/sleepycat/bind/EntryBinding.html
share/doc/db5/java/com/sleepycat/bind/RecordNumberBinding.html
share/doc/db5/java/com/sleepycat/bind/class-use/ByteArrayBinding.html
share/doc/db5/java/com/sleepycat/bind/class-use/EntityBinding.html
share/doc/db5/java/com/sleepycat/bind/class-use/EntryBinding.html
share/doc/db5/java/com/sleepycat/bind/class-use/RecordNumberBinding.html
share/doc/db5/java/com/sleepycat/bind/package-frame.html
share/doc/db5/java/com/sleepycat/bind/package-summary.html
share/doc/db5/java/com/sleepycat/bind/package-tree.html
share/doc/db5/java/com/sleepycat/bind/package-use.html
share/doc/db5/java/com/sleepycat/bind/serial/ClassCatalog.html
share/doc/db5/java/com/sleepycat/bind/serial/SerialBase.html
share/doc/db5/java/com/sleepycat/bind/serial/SerialBinding.html
share/doc/db5/java/com/sleepycat/bind/serial/SerialInput.html
share/doc/db5/java/com/sleepycat/bind/serial/SerialOutput.html
share/doc/db5/java/com/sleepycat/bind/serial/SerialSerialBinding.html
share/doc/db5/java/com/sleepycat/bind/serial/SerialSerialKeyCreator.html
share/doc/db5/java/com/sleepycat/bind/serial/StoredClassCatalog.html
share/doc/db5/java/com/sleepycat/bind/serial/TupleSerialBinding.html
share/doc/db5/java/com/sleepycat/bind/serial/TupleSerialKeyCreator.html
share/doc/db5/java/com/sleepycat/bind/serial/TupleSerialMarshalledBinding.html
share/doc/db5/java/com/sleepycat/bind/serial/TupleSerialMarshalledKeyCreator.html
share/doc/db5/java/com/sleepycat/bind/serial/class-use/ClassCatalog.html
share/doc/db5/java/com/sleepycat/bind/serial/class-use/SerialBase.html
share/doc/db5/java/com/sleepycat/bind/serial/class-use/SerialBinding.html
share/doc/db5/java/com/sleepycat/bind/serial/class-use/SerialInput.html
share/doc/db5/java/com/sleepycat/bind/serial/class-use/SerialOutput.html
share/doc/db5/java/com/sleepycat/bind/serial/class-use/SerialSerialBinding.html
share/doc/db5/java/com/sleepycat/bind/serial/class-use/SerialSerialKeyCreator.html
share/doc/db5/java/com/sleepycat/bind/serial/class-use/StoredClassCatalog.html
share/doc/db5/java/com/sleepycat/bind/serial/class-use/TupleSerialBinding.html
share/doc/db5/java/com/sleepycat/bind/serial/class-use/TupleSerialKeyCreator.html
share/doc/db5/java/com/sleepycat/bind/serial/class-use/TupleSerialMarshalledBinding.html
share/doc/db5/java/com/sleepycat/bind/serial/class-use/TupleSerialMarshalledKeyCreator.html
share/doc/db5/java/com/sleepycat/bind/serial/package-frame.html
share/doc/db5/java/com/sleepycat/bind/serial/package-summary.html
share/doc/db5/java/com/sleepycat/bind/serial/package-tree.html
share/doc/db5/java/com/sleepycat/bind/serial/package-use.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/java/com/sleepycat/bind/tuple/BigDecimalBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/BigIntegerBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/BooleanBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/ByteBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/CharacterBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/DoubleBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/FloatBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/IntegerBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/LongBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/MarshalledTupleEntry.html
share/doc/db5/java/com/sleepycat/bind/tuple/MarshalledTupleKeyEntity.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/java/com/sleepycat/bind/tuple/PackedIntegerBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/PackedLongBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/ShortBinding.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/java/com/sleepycat/bind/tuple/SortedBigDecimalBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/SortedDoubleBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/SortedFloatBinding.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/java/com/sleepycat/bind/tuple/SortedPackedIntegerBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/SortedPackedLongBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/StringBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/TupleBase.html
share/doc/db5/java/com/sleepycat/bind/tuple/TupleBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/TupleInput.html
share/doc/db5/java/com/sleepycat/bind/tuple/TupleInputBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/TupleMarshalledBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/TupleOutput.html
share/doc/db5/java/com/sleepycat/bind/tuple/TupleTupleBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/TupleTupleKeyCreator.html
share/doc/db5/java/com/sleepycat/bind/tuple/TupleTupleMarshalledBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/TupleTupleMarshalledKeyCreator.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/BigDecimalBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/BigIntegerBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/BooleanBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/ByteBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/CharacterBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/DoubleBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/FloatBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/IntegerBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/LongBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/MarshalledTupleEntry.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/MarshalledTupleKeyEntity.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/PackedIntegerBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/PackedLongBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/ShortBinding.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/SortedBigDecimalBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/SortedDoubleBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/SortedFloatBinding.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/SortedPackedIntegerBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/SortedPackedLongBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/StringBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/TupleBase.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/TupleBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/TupleInput.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/TupleInputBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/TupleMarshalledBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/TupleOutput.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/TupleTupleBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/TupleTupleKeyCreator.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/TupleTupleMarshalledBinding.html
share/doc/db5/java/com/sleepycat/bind/tuple/class-use/TupleTupleMarshalledKeyCreator.html
share/doc/db5/java/com/sleepycat/bind/tuple/package-frame.html
share/doc/db5/java/com/sleepycat/bind/tuple/package-summary.html
share/doc/db5/java/com/sleepycat/bind/tuple/package-tree.html
share/doc/db5/java/com/sleepycat/bind/tuple/package-use.html
share/doc/db5/java/com/sleepycat/collections/CurrentTransaction.html
share/doc/db5/java/com/sleepycat/collections/MapEntryParameter.html
share/doc/db5/java/com/sleepycat/collections/PrimaryKeyAssigner.html
share/doc/db5/java/com/sleepycat/collections/StoredCollection.html
share/doc/db5/java/com/sleepycat/collections/StoredCollections.html
share/doc/db5/java/com/sleepycat/collections/StoredContainer.html
share/doc/db5/java/com/sleepycat/collections/StoredEntrySet.html
share/doc/db5/java/com/sleepycat/collections/StoredIterator.html
share/doc/db5/java/com/sleepycat/collections/StoredKeySet.html
share/doc/db5/java/com/sleepycat/collections/StoredList.html
share/doc/db5/java/com/sleepycat/collections/StoredMap.html
share/doc/db5/java/com/sleepycat/collections/StoredSortedEntrySet.html
share/doc/db5/java/com/sleepycat/collections/StoredSortedKeySet.html
share/doc/db5/java/com/sleepycat/collections/StoredSortedMap.html
share/doc/db5/java/com/sleepycat/collections/StoredSortedValueSet.html
share/doc/db5/java/com/sleepycat/collections/StoredValueSet.html
share/doc/db5/java/com/sleepycat/collections/TransactionRunner.html
share/doc/db5/java/com/sleepycat/collections/TransactionWorker.html
share/doc/db5/java/com/sleepycat/collections/TupleSerialFactory.html
share/doc/db5/java/com/sleepycat/collections/class-use/CurrentTransaction.html
share/doc/db5/java/com/sleepycat/collections/class-use/MapEntryParameter.html
share/doc/db5/java/com/sleepycat/collections/class-use/PrimaryKeyAssigner.html
share/doc/db5/java/com/sleepycat/collections/class-use/StoredCollection.html
share/doc/db5/java/com/sleepycat/collections/class-use/StoredCollections.html
share/doc/db5/java/com/sleepycat/collections/class-use/StoredContainer.html
share/doc/db5/java/com/sleepycat/collections/class-use/StoredEntrySet.html
share/doc/db5/java/com/sleepycat/collections/class-use/StoredIterator.html
share/doc/db5/java/com/sleepycat/collections/class-use/StoredKeySet.html
share/doc/db5/java/com/sleepycat/collections/class-use/StoredList.html
share/doc/db5/java/com/sleepycat/collections/class-use/StoredMap.html
share/doc/db5/java/com/sleepycat/collections/class-use/StoredSortedEntrySet.html
share/doc/db5/java/com/sleepycat/collections/class-use/StoredSortedKeySet.html
share/doc/db5/java/com/sleepycat/collections/class-use/StoredSortedMap.html
share/doc/db5/java/com/sleepycat/collections/class-use/StoredSortedValueSet.html
share/doc/db5/java/com/sleepycat/collections/class-use/StoredValueSet.html
share/doc/db5/java/com/sleepycat/collections/class-use/TransactionRunner.html
share/doc/db5/java/com/sleepycat/collections/class-use/TransactionWorker.html
share/doc/db5/java/com/sleepycat/collections/class-use/TupleSerialFactory.html
share/doc/db5/java/com/sleepycat/collections/package-frame.html
share/doc/db5/java/com/sleepycat/collections/package-summary.html
share/doc/db5/java/com/sleepycat/collections/package-tree.html
share/doc/db5/java/com/sleepycat/collections/package-use.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/java/com/sleepycat/db/BackupHandler.html
share/doc/db5/java/com/sleepycat/db/BackupOptions.html
share/doc/db5/java/com/sleepycat/db/BtreeCompressor.html
share/doc/db5/java/com/sleepycat/db/BtreePrefixCalculator.html
share/doc/db5/java/com/sleepycat/db/BtreeStats.html
share/doc/db5/java/com/sleepycat/db/CacheFile.html
share/doc/db5/java/com/sleepycat/db/CacheFilePriority.html
share/doc/db5/java/com/sleepycat/db/CacheFileStats.html
share/doc/db5/java/com/sleepycat/db/CacheStats.html
share/doc/db5/java/com/sleepycat/db/CheckpointConfig.html
share/doc/db5/java/com/sleepycat/db/CompactConfig.html
share/doc/db5/java/com/sleepycat/db/CompactStats.html
share/doc/db5/java/com/sleepycat/db/Cursor.html
share/doc/db5/java/com/sleepycat/db/CursorConfig.html
share/doc/db5/java/com/sleepycat/db/Database.html
share/doc/db5/java/com/sleepycat/db/DatabaseConfig.html
share/doc/db5/java/com/sleepycat/db/DatabaseEntry.html
share/doc/db5/java/com/sleepycat/db/DatabaseException.html
share/doc/db5/java/com/sleepycat/db/DatabaseStats.html
share/doc/db5/java/com/sleepycat/db/DatabaseType.html
share/doc/db5/java/com/sleepycat/db/DeadlockException.html
share/doc/db5/java/com/sleepycat/db/Environment.html
share/doc/db5/java/com/sleepycat/db/EnvironmentConfig.html
share/doc/db5/java/com/sleepycat/db/ErrorHandler.html
share/doc/db5/java/com/sleepycat/db/EventHandler.html
share/doc/db5/java/com/sleepycat/db/EventHandlerAdapter.html
share/doc/db5/java/com/sleepycat/db/FeedbackHandler.html
share/doc/db5/java/com/sleepycat/db/ForeignKeyDeleteAction.html
share/doc/db5/java/com/sleepycat/db/ForeignKeyNullifier.html
share/doc/db5/java/com/sleepycat/db/ForeignMultiKeyNullifier.html
share/doc/db5/java/com/sleepycat/db/HashStats.html
share/doc/db5/java/com/sleepycat/db/Hasher.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/java/com/sleepycat/db/HeapFullException.html
share/doc/db5/java/com/sleepycat/db/HeapRecordId.html
share/doc/db5/java/com/sleepycat/db/HeapStats.html
share/doc/db5/java/com/sleepycat/db/JoinConfig.html
share/doc/db5/java/com/sleepycat/db/JoinCursor.html
share/doc/db5/java/com/sleepycat/db/KeyRange.html
share/doc/db5/java/com/sleepycat/db/Lock.html
share/doc/db5/java/com/sleepycat/db/LockDetectMode.html
share/doc/db5/java/com/sleepycat/db/LockMode.html
share/doc/db5/java/com/sleepycat/db/LockNotGrantedException.html
share/doc/db5/java/com/sleepycat/db/LockOperation.html
share/doc/db5/java/com/sleepycat/db/LockRequest.html
share/doc/db5/java/com/sleepycat/db/LockRequestMode.html
share/doc/db5/java/com/sleepycat/db/LockStats.html
share/doc/db5/java/com/sleepycat/db/LogCursor.html
share/doc/db5/java/com/sleepycat/db/LogRecordHandler.html
share/doc/db5/java/com/sleepycat/db/LogSequenceNumber.html
share/doc/db5/java/com/sleepycat/db/LogStats.html
share/doc/db5/java/com/sleepycat/db/LogVerifyConfig.html
share/doc/db5/java/com/sleepycat/db/MemoryException.html
share/doc/db5/java/com/sleepycat/db/MessageHandler.html
share/doc/db5/java/com/sleepycat/db/MultipleDataEntry.html
share/doc/db5/java/com/sleepycat/db/MultipleEntry.html
share/doc/db5/java/com/sleepycat/db/MultipleKeyDataEntry.html
share/doc/db5/java/com/sleepycat/db/MultipleKeyNIODataEntry.html
share/doc/db5/java/com/sleepycat/db/MultipleNIODataEntry.html
share/doc/db5/java/com/sleepycat/db/MultipleRecnoDataEntry.html
share/doc/db5/java/com/sleepycat/db/MultipleRecnoNIODataEntry.html
share/doc/db5/java/com/sleepycat/db/MutexStats.html
share/doc/db5/java/com/sleepycat/db/OperationStatus.html
share/doc/db5/java/com/sleepycat/db/PanicHandler.html
share/doc/db5/java/com/sleepycat/db/PartitionHandler.html
share/doc/db5/java/com/sleepycat/db/PreparedTransaction.html
share/doc/db5/java/com/sleepycat/db/QueueStats.html
share/doc/db5/java/com/sleepycat/db/RecordNumberAppender.html
share/doc/db5/java/com/sleepycat/db/RecoveryOperation.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/java/com/sleepycat/db/RegionResourceType.html
share/doc/db5/java/com/sleepycat/db/ReplicationChannel.html
share/doc/db5/java/com/sleepycat/db/ReplicationConfig.html
share/doc/db5/java/com/sleepycat/db/ReplicationDuplicateMasterException.html
share/doc/db5/java/com/sleepycat/db/ReplicationHandleDeadException.html
share/doc/db5/java/com/sleepycat/db/ReplicationHoldElectionException.html
share/doc/db5/java/com/sleepycat/db/ReplicationHostAddress.html
share/doc/db5/java/com/sleepycat/db/ReplicationJoinFailureException.html
share/doc/db5/java/com/sleepycat/db/ReplicationLeaseExpiredException.html
share/doc/db5/java/com/sleepycat/db/ReplicationLockoutException.html
share/doc/db5/java/com/sleepycat/db/ReplicationManagerAckPolicy.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/java/com/sleepycat/db/ReplicationManagerConnectionStatus.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/java/com/sleepycat/db/ReplicationManagerMessageDispatch.html
share/doc/db5/java/com/sleepycat/db/ReplicationManagerSite.html
share/doc/db5/java/com/sleepycat/db/ReplicationManagerSiteConfig.html
share/doc/db5/java/com/sleepycat/db/ReplicationManagerSiteInfo.html
share/doc/db5/java/com/sleepycat/db/ReplicationManagerStartPolicy.html
share/doc/db5/java/com/sleepycat/db/ReplicationManagerStats.html
share/doc/db5/java/com/sleepycat/db/ReplicationSiteUnavailableException.html
share/doc/db5/java/com/sleepycat/db/ReplicationStats.html
share/doc/db5/java/com/sleepycat/db/ReplicationStatus.html
share/doc/db5/java/com/sleepycat/db/ReplicationTimeoutType.html
share/doc/db5/java/com/sleepycat/db/ReplicationTransport.html
share/doc/db5/java/com/sleepycat/db/RunRecoveryException.html
share/doc/db5/java/com/sleepycat/db/SecondaryConfig.html
share/doc/db5/java/com/sleepycat/db/SecondaryCursor.html
share/doc/db5/java/com/sleepycat/db/SecondaryDatabase.html
share/doc/db5/java/com/sleepycat/db/SecondaryKeyCreator.html
share/doc/db5/java/com/sleepycat/db/SecondaryMultiKeyCreator.html
share/doc/db5/java/com/sleepycat/db/Sequence.html
share/doc/db5/java/com/sleepycat/db/SequenceConfig.html
share/doc/db5/java/com/sleepycat/db/SequenceStats.html
share/doc/db5/java/com/sleepycat/db/StatsConfig.html
share/doc/db5/java/com/sleepycat/db/Transaction.html
share/doc/db5/java/com/sleepycat/db/TransactionConfig.html
share/doc/db5/java/com/sleepycat/db/TransactionStats.Active.html
share/doc/db5/java/com/sleepycat/db/TransactionStats.html
share/doc/db5/java/com/sleepycat/db/TransactionStatus.html
share/doc/db5/java/com/sleepycat/db/VerboseConfig.html
share/doc/db5/java/com/sleepycat/db/VerifyConfig.html
share/doc/db5/java/com/sleepycat/db/VersionMismatchException.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/java/com/sleepycat/db/class-use/BackupHandler.html
share/doc/db5/java/com/sleepycat/db/class-use/BackupOptions.html
share/doc/db5/java/com/sleepycat/db/class-use/BtreeCompressor.html
share/doc/db5/java/com/sleepycat/db/class-use/BtreePrefixCalculator.html
share/doc/db5/java/com/sleepycat/db/class-use/BtreeStats.html
share/doc/db5/java/com/sleepycat/db/class-use/CacheFile.html
share/doc/db5/java/com/sleepycat/db/class-use/CacheFilePriority.html
share/doc/db5/java/com/sleepycat/db/class-use/CacheFileStats.html
share/doc/db5/java/com/sleepycat/db/class-use/CacheStats.html
share/doc/db5/java/com/sleepycat/db/class-use/CheckpointConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/CompactConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/CompactStats.html
share/doc/db5/java/com/sleepycat/db/class-use/Cursor.html
share/doc/db5/java/com/sleepycat/db/class-use/CursorConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/Database.html
share/doc/db5/java/com/sleepycat/db/class-use/DatabaseConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/DatabaseEntry.html
share/doc/db5/java/com/sleepycat/db/class-use/DatabaseException.html
share/doc/db5/java/com/sleepycat/db/class-use/DatabaseStats.html
share/doc/db5/java/com/sleepycat/db/class-use/DatabaseType.html
share/doc/db5/java/com/sleepycat/db/class-use/DeadlockException.html
share/doc/db5/java/com/sleepycat/db/class-use/Environment.html
share/doc/db5/java/com/sleepycat/db/class-use/EnvironmentConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/ErrorHandler.html
share/doc/db5/java/com/sleepycat/db/class-use/EventHandler.html
share/doc/db5/java/com/sleepycat/db/class-use/EventHandlerAdapter.html
share/doc/db5/java/com/sleepycat/db/class-use/FeedbackHandler.html
share/doc/db5/java/com/sleepycat/db/class-use/ForeignKeyDeleteAction.html
share/doc/db5/java/com/sleepycat/db/class-use/ForeignKeyNullifier.html
share/doc/db5/java/com/sleepycat/db/class-use/ForeignMultiKeyNullifier.html
share/doc/db5/java/com/sleepycat/db/class-use/HashStats.html
share/doc/db5/java/com/sleepycat/db/class-use/Hasher.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/java/com/sleepycat/db/class-use/HeapFullException.html
share/doc/db5/java/com/sleepycat/db/class-use/HeapRecordId.html
share/doc/db5/java/com/sleepycat/db/class-use/HeapStats.html
share/doc/db5/java/com/sleepycat/db/class-use/JoinConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/JoinCursor.html
share/doc/db5/java/com/sleepycat/db/class-use/KeyRange.html
share/doc/db5/java/com/sleepycat/db/class-use/Lock.html
share/doc/db5/java/com/sleepycat/db/class-use/LockDetectMode.html
share/doc/db5/java/com/sleepycat/db/class-use/LockMode.html
share/doc/db5/java/com/sleepycat/db/class-use/LockNotGrantedException.html
share/doc/db5/java/com/sleepycat/db/class-use/LockOperation.html
share/doc/db5/java/com/sleepycat/db/class-use/LockRequest.html
share/doc/db5/java/com/sleepycat/db/class-use/LockRequestMode.html
share/doc/db5/java/com/sleepycat/db/class-use/LockStats.html
share/doc/db5/java/com/sleepycat/db/class-use/LogCursor.html
share/doc/db5/java/com/sleepycat/db/class-use/LogRecordHandler.html
share/doc/db5/java/com/sleepycat/db/class-use/LogSequenceNumber.html
share/doc/db5/java/com/sleepycat/db/class-use/LogStats.html
share/doc/db5/java/com/sleepycat/db/class-use/LogVerifyConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/MemoryException.html
share/doc/db5/java/com/sleepycat/db/class-use/MessageHandler.html
share/doc/db5/java/com/sleepycat/db/class-use/MultipleDataEntry.html
share/doc/db5/java/com/sleepycat/db/class-use/MultipleEntry.html
share/doc/db5/java/com/sleepycat/db/class-use/MultipleKeyDataEntry.html
share/doc/db5/java/com/sleepycat/db/class-use/MultipleKeyNIODataEntry.html
share/doc/db5/java/com/sleepycat/db/class-use/MultipleNIODataEntry.html
share/doc/db5/java/com/sleepycat/db/class-use/MultipleRecnoDataEntry.html
share/doc/db5/java/com/sleepycat/db/class-use/MultipleRecnoNIODataEntry.html
share/doc/db5/java/com/sleepycat/db/class-use/MutexStats.html
share/doc/db5/java/com/sleepycat/db/class-use/OperationStatus.html
share/doc/db5/java/com/sleepycat/db/class-use/PanicHandler.html
share/doc/db5/java/com/sleepycat/db/class-use/PartitionHandler.html
share/doc/db5/java/com/sleepycat/db/class-use/PreparedTransaction.html
share/doc/db5/java/com/sleepycat/db/class-use/QueueStats.html
share/doc/db5/java/com/sleepycat/db/class-use/RecordNumberAppender.html
share/doc/db5/java/com/sleepycat/db/class-use/RecoveryOperation.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/java/com/sleepycat/db/class-use/RegionResourceType.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationChannel.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationDuplicateMasterException.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationHandleDeadException.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationHoldElectionException.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationHostAddress.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationJoinFailureException.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationLeaseExpiredException.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationLockoutException.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationManagerAckPolicy.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationManagerConnectionStatus.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationManagerMessageDispatch.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationManagerSite.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationManagerSiteConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationManagerSiteInfo.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationManagerStartPolicy.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationManagerStats.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationSiteUnavailableException.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationStats.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationStatus.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationTimeoutType.html
share/doc/db5/java/com/sleepycat/db/class-use/ReplicationTransport.html
share/doc/db5/java/com/sleepycat/db/class-use/RunRecoveryException.html
share/doc/db5/java/com/sleepycat/db/class-use/SecondaryConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/SecondaryCursor.html
share/doc/db5/java/com/sleepycat/db/class-use/SecondaryDatabase.html
share/doc/db5/java/com/sleepycat/db/class-use/SecondaryKeyCreator.html
share/doc/db5/java/com/sleepycat/db/class-use/SecondaryMultiKeyCreator.html
share/doc/db5/java/com/sleepycat/db/class-use/Sequence.html
share/doc/db5/java/com/sleepycat/db/class-use/SequenceConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/SequenceStats.html
share/doc/db5/java/com/sleepycat/db/class-use/StatsConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/Transaction.html
share/doc/db5/java/com/sleepycat/db/class-use/TransactionConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/TransactionStats.Active.html
share/doc/db5/java/com/sleepycat/db/class-use/TransactionStats.html
share/doc/db5/java/com/sleepycat/db/class-use/TransactionStatus.html
share/doc/db5/java/com/sleepycat/db/class-use/VerboseConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/VerifyConfig.html
share/doc/db5/java/com/sleepycat/db/class-use/VersionMismatchException.html
share/doc/db5/java/com/sleepycat/db/package-frame.html
share/doc/db5/java/com/sleepycat/db/package-summary.html
share/doc/db5/java/com/sleepycat/db/package-tree.html
share/doc/db5/java/com/sleepycat/db/package-use.html
share/doc/db5/java/com/sleepycat/persist/DatabaseNamer.html
share/doc/db5/java/com/sleepycat/persist/EntityCursor.html
share/doc/db5/java/com/sleepycat/persist/EntityIndex.html
share/doc/db5/java/com/sleepycat/persist/EntityJoin.html
share/doc/db5/java/com/sleepycat/persist/EntityStore.html
share/doc/db5/java/com/sleepycat/persist/ForwardCursor.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/java/com/sleepycat/persist/IndexNotAvailableException.html
share/doc/db5/java/com/sleepycat/persist/PrimaryIndex.html
share/doc/db5/java/com/sleepycat/persist/SecondaryIndex.html
share/doc/db5/java/com/sleepycat/persist/StoreConfig.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/java/com/sleepycat/persist/StoreConfigBeanInfo.html
share/doc/db5/java/com/sleepycat/persist/StoreExistsException.html
share/doc/db5/java/com/sleepycat/persist/StoreNotFoundException.html
share/doc/db5/java/com/sleepycat/persist/class-use/DatabaseNamer.html
share/doc/db5/java/com/sleepycat/persist/class-use/EntityCursor.html
share/doc/db5/java/com/sleepycat/persist/class-use/EntityIndex.html
share/doc/db5/java/com/sleepycat/persist/class-use/EntityJoin.html
share/doc/db5/java/com/sleepycat/persist/class-use/EntityStore.html
share/doc/db5/java/com/sleepycat/persist/class-use/ForwardCursor.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/java/com/sleepycat/persist/class-use/IndexNotAvailableException.html
share/doc/db5/java/com/sleepycat/persist/class-use/PrimaryIndex.html
share/doc/db5/java/com/sleepycat/persist/class-use/SecondaryIndex.html
share/doc/db5/java/com/sleepycat/persist/class-use/StoreConfig.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/java/com/sleepycat/persist/class-use/StoreConfigBeanInfo.html
share/doc/db5/java/com/sleepycat/persist/class-use/StoreExistsException.html
share/doc/db5/java/com/sleepycat/persist/class-use/StoreNotFoundException.html
share/doc/db5/java/com/sleepycat/persist/evolve/Conversion.html
share/doc/db5/java/com/sleepycat/persist/evolve/Converter.html
share/doc/db5/java/com/sleepycat/persist/evolve/DeletedClassException.html
share/doc/db5/java/com/sleepycat/persist/evolve/Deleter.html
share/doc/db5/java/com/sleepycat/persist/evolve/EntityConverter.html
share/doc/db5/java/com/sleepycat/persist/evolve/EvolveConfig.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/java/com/sleepycat/persist/evolve/EvolveConfigBeanInfo.html
share/doc/db5/java/com/sleepycat/persist/evolve/EvolveEvent.html
share/doc/db5/java/com/sleepycat/persist/evolve/EvolveInternal.html
share/doc/db5/java/com/sleepycat/persist/evolve/EvolveListener.html
share/doc/db5/java/com/sleepycat/persist/evolve/EvolveStats.html
share/doc/db5/java/com/sleepycat/persist/evolve/IncompatibleClassException.html
share/doc/db5/java/com/sleepycat/persist/evolve/Mutation.html
share/doc/db5/java/com/sleepycat/persist/evolve/Mutations.html
share/doc/db5/java/com/sleepycat/persist/evolve/Renamer.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/Conversion.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/Converter.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/DeletedClassException.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/Deleter.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/EntityConverter.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/EvolveConfig.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/EvolveConfigBeanInfo.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/EvolveEvent.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/EvolveInternal.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/EvolveListener.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/EvolveStats.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/IncompatibleClassException.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/Mutation.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/Mutations.html
share/doc/db5/java/com/sleepycat/persist/evolve/class-use/Renamer.html
share/doc/db5/java/com/sleepycat/persist/evolve/package-frame.html
share/doc/db5/java/com/sleepycat/persist/evolve/package-summary.html
share/doc/db5/java/com/sleepycat/persist/evolve/package-tree.html
share/doc/db5/java/com/sleepycat/persist/evolve/package-use.html
share/doc/db5/java/com/sleepycat/persist/model/AnnotationModel.html
share/doc/db5/java/com/sleepycat/persist/model/ClassEnhancer.html
share/doc/db5/java/com/sleepycat/persist/model/ClassMetadata.html
share/doc/db5/java/com/sleepycat/persist/model/DeleteAction.html
share/doc/db5/java/com/sleepycat/persist/model/Entity.html
share/doc/db5/java/com/sleepycat/persist/model/EntityMetadata.html
share/doc/db5/java/com/sleepycat/persist/model/EntityModel.html
share/doc/db5/java/com/sleepycat/persist/model/FieldMetadata.html
share/doc/db5/java/com/sleepycat/persist/model/KeyField.html
share/doc/db5/java/com/sleepycat/persist/model/ModelInternal.html
share/doc/db5/java/com/sleepycat/persist/model/NotPersistent.html
share/doc/db5/java/com/sleepycat/persist/model/NotTransient.html
share/doc/db5/java/com/sleepycat/persist/model/Persistent.html
share/doc/db5/java/com/sleepycat/persist/model/PersistentProxy.html
share/doc/db5/java/com/sleepycat/persist/model/PrimaryKey.html
share/doc/db5/java/com/sleepycat/persist/model/PrimaryKeyMetadata.html
share/doc/db5/java/com/sleepycat/persist/model/Relationship.html
share/doc/db5/java/com/sleepycat/persist/model/SecondaryKey.html
share/doc/db5/java/com/sleepycat/persist/model/SecondaryKeyMetadata.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/AnnotationModel.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/ClassEnhancer.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/ClassMetadata.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/DeleteAction.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/Entity.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/EntityMetadata.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/EntityModel.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/FieldMetadata.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/KeyField.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/ModelInternal.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/NotPersistent.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/NotTransient.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/Persistent.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/PersistentProxy.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/PrimaryKey.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/PrimaryKeyMetadata.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/Relationship.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/SecondaryKey.html
share/doc/db5/java/com/sleepycat/persist/model/class-use/SecondaryKeyMetadata.html
share/doc/db5/java/com/sleepycat/persist/model/package-frame.html
share/doc/db5/java/com/sleepycat/persist/model/package-summary.html
share/doc/db5/java/com/sleepycat/persist/model/package-tree.html
share/doc/db5/java/com/sleepycat/persist/model/package-use.html
share/doc/db5/java/com/sleepycat/persist/package-frame.html
share/doc/db5/java/com/sleepycat/persist/package-summary.html
share/doc/db5/java/com/sleepycat/persist/package-tree.html
share/doc/db5/java/com/sleepycat/persist/package-use.html
share/doc/db5/java/com/sleepycat/persist/raw/RawField.html
share/doc/db5/java/com/sleepycat/persist/raw/RawObject.html
share/doc/db5/java/com/sleepycat/persist/raw/RawStore.html
share/doc/db5/java/com/sleepycat/persist/raw/RawType.html
share/doc/db5/java/com/sleepycat/persist/raw/class-use/RawField.html
share/doc/db5/java/com/sleepycat/persist/raw/class-use/RawObject.html
share/doc/db5/java/com/sleepycat/persist/raw/class-use/RawStore.html
share/doc/db5/java/com/sleepycat/persist/raw/class-use/RawType.html
share/doc/db5/java/com/sleepycat/persist/raw/package-frame.html
share/doc/db5/java/com/sleepycat/persist/raw/package-summary.html
share/doc/db5/java/com/sleepycat/persist/raw/package-tree.html
share/doc/db5/java/com/sleepycat/persist/raw/package-use.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/java/com/sleepycat/util/ClassResolver.Stream.html
share/doc/db5/java/com/sleepycat/util/ClassResolver.html
share/doc/db5/java/com/sleepycat/util/ConfigBeanInfoBase.html
share/doc/db5/java/com/sleepycat/util/ErrorBuffer.html
share/doc/db5/java/com/sleepycat/util/ExceptionUnwrapper.html
share/doc/db5/java/com/sleepycat/util/ExceptionWrapper.html
share/doc/db5/java/com/sleepycat/util/FastInputStream.html
share/doc/db5/java/com/sleepycat/util/FastOutputStream.html
share/doc/db5/java/com/sleepycat/util/IOExceptionWrapper.html
share/doc/db5/java/com/sleepycat/util/PackedInteger.html
share/doc/db5/java/com/sleepycat/util/RuntimeExceptionWrapper.html
share/doc/db5/java/com/sleepycat/util/UtfOps.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/java/com/sleepycat/util/class-use/ClassResolver.Stream.html
share/doc/db5/java/com/sleepycat/util/class-use/ClassResolver.html
share/doc/db5/java/com/sleepycat/util/class-use/ConfigBeanInfoBase.html
share/doc/db5/java/com/sleepycat/util/class-use/ErrorBuffer.html
share/doc/db5/java/com/sleepycat/util/class-use/ExceptionUnwrapper.html
share/doc/db5/java/com/sleepycat/util/class-use/ExceptionWrapper.html
share/doc/db5/java/com/sleepycat/util/class-use/FastInputStream.html
share/doc/db5/java/com/sleepycat/util/class-use/FastOutputStream.html
share/doc/db5/java/com/sleepycat/util/class-use/IOExceptionWrapper.html
share/doc/db5/java/com/sleepycat/util/class-use/PackedInteger.html
share/doc/db5/java/com/sleepycat/util/class-use/RuntimeExceptionWrapper.html
share/doc/db5/java/com/sleepycat/util/class-use/UtfOps.html
share/doc/db5/java/com/sleepycat/util/package-frame.html
share/doc/db5/java/com/sleepycat/util/package-summary.html
share/doc/db5/java/com/sleepycat/util/package-tree.html
share/doc/db5/java/com/sleepycat/util/package-use.html
share/doc/db5/java/constant-values.html
share/doc/db5/java/deprecated-list.html
share/doc/db5/java/help-doc.html
share/doc/db5/java/index-all.html
share/doc/db5/java/index.html
share/doc/db5/java/overview-frame.html
share/doc/db5/java/overview-summary.html
share/doc/db5/java/overview-tree.html
share/doc/db5/java/package-list
share/doc/db5/java/resources/inherit.gif
share/doc/db5/java/serialized-form.html
share/doc/db5/java/style.css
share/doc/db5/license/license_db.html
share/doc/db5/porting/BDB-Porting-Guide.pdf
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/porting/audience.html
share/doc/db5/porting/buildtarget.html
share/doc/db5/porting/certport.html
share/doc/db5/porting/gettingStarted.css
share/doc/db5/porting/index.html
share/doc/db5/porting/introduction.html
share/doc/db5/porting/layout.html
share/doc/db5/porting/modifytest.html
share/doc/db5/porting/modscope.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/porting/moreinfo.html
share/doc/db5/porting/newbinary.html
share/doc/db5/porting/portprocess.html
share/doc/db5/porting/preface.html
share/doc/db5/porting/sourceintegrate.html
share/doc/db5/porting/testport.html
share/doc/db5/porting/testreview.html
share/doc/db5/porting/testrun.html
share/doc/db5/programmer_reference/BDB_Prog_Reference.pdf
share/doc/db5/programmer_reference/am.html
share/doc/db5/programmer_reference/am_close.html
share/doc/db5/programmer_reference/am_conf.html
share/doc/db5/programmer_reference/am_conf_logrec.html
share/doc/db5/programmer_reference/am_conf_select.html
share/doc/db5/programmer_reference/am_cursor.html
share/doc/db5/programmer_reference/am_delete.html
share/doc/db5/programmer_reference/am_foreign.html
share/doc/db5/programmer_reference/am_get.html
share/doc/db5/programmer_reference/am_misc.html
share/doc/db5/programmer_reference/am_misc_bulk.html
share/doc/db5/programmer_reference/am_misc_db_sql.html
share/doc/db5/programmer_reference/am_misc_dbsizes.html
share/doc/db5/programmer_reference/am_misc_diskspace.html
share/doc/db5/programmer_reference/am_misc_error.html
share/doc/db5/programmer_reference/am_misc_faq.html
share/doc/db5/programmer_reference/am_misc_partial.html
share/doc/db5/programmer_reference/am_misc_perm.html
share/doc/db5/programmer_reference/am_misc_stability.html
share/doc/db5/programmer_reference/am_misc_struct.html
share/doc/db5/programmer_reference/am_misc_tune.html
share/doc/db5/programmer_reference/am_opensub.html
share/doc/db5/programmer_reference/am_partition.html
share/doc/db5/programmer_reference/am_put.html
share/doc/db5/programmer_reference/am_second.html
share/doc/db5/programmer_reference/am_stat.html
share/doc/db5/programmer_reference/am_sync.html
share/doc/db5/programmer_reference/am_truncate.html
share/doc/db5/programmer_reference/am_upgrade.html
share/doc/db5/programmer_reference/am_verify.html
share/doc/db5/programmer_reference/apprec.html
share/doc/db5/programmer_reference/apprec_auto.html
share/doc/db5/programmer_reference/apprec_config.html
share/doc/db5/programmer_reference/apprec_def.html
share/doc/db5/programmer_reference/arch.html
share/doc/db5/programmer_reference/arch_apis.html
share/doc/db5/programmer_reference/arch_bigpic.gif
share/doc/db5/programmer_reference/arch_progmodel.html
share/doc/db5/programmer_reference/arch_script.html
share/doc/db5/programmer_reference/arch_smallpic.gif
share/doc/db5/programmer_reference/arch_utilities.html
share/doc/db5/programmer_reference/bdb_usenix.pdf
share/doc/db5/programmer_reference/bt_conf.html
share/doc/db5/programmer_reference/cam.html
share/doc/db5/programmer_reference/cam_app.html
share/doc/db5/programmer_reference/cam_fail.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/programmer_reference/ch13s02.html
share/doc/db5/programmer_reference/csharp.html
share/doc/db5/programmer_reference/dumpload.html
share/doc/db5/programmer_reference/dumpload_format.html
share/doc/db5/programmer_reference/dumpload_text.html
share/doc/db5/programmer_reference/embedded.html
share/doc/db5/programmer_reference/env.html
share/doc/db5/programmer_reference/env_create.html
share/doc/db5/programmer_reference/env_db_config.html
share/doc/db5/programmer_reference/env_encrypt.html
share/doc/db5/programmer_reference/env_error.html
share/doc/db5/programmer_reference/env_faq.html
share/doc/db5/programmer_reference/env_naming.html
share/doc/db5/programmer_reference/env_open.html
share/doc/db5/programmer_reference/env_region.html
share/doc/db5/programmer_reference/env_remote.html
share/doc/db5/programmer_reference/env_security.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/programmer_reference/env_size.html
share/doc/db5/programmer_reference/ext.html
share/doc/db5/programmer_reference/ext_perl.html
share/doc/db5/programmer_reference/ext_php.html
share/doc/db5/programmer_reference/general_am_conf.html
share/doc/db5/programmer_reference/gettingStarted.css
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/programmer_reference/group_membership.html
share/doc/db5/programmer_reference/hash_conf.html
share/doc/db5/programmer_reference/hash_usenix.pdf
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/programmer_reference/heap_conf.html
share/doc/db5/programmer_reference/index.html
share/doc/db5/programmer_reference/intro.html
share/doc/db5/programmer_reference/intro_dbis.html
share/doc/db5/programmer_reference/intro_dbisnot.html
share/doc/db5/programmer_reference/intro_distrib.html
share/doc/db5/programmer_reference/intro_need.html
share/doc/db5/programmer_reference/intro_products.html
share/doc/db5/programmer_reference/intro_terrain.html
share/doc/db5/programmer_reference/intro_what.html
share/doc/db5/programmer_reference/intro_where.html
share/doc/db5/programmer_reference/java.html
share/doc/db5/programmer_reference/java_compat.html
share/doc/db5/programmer_reference/java_faq.html
share/doc/db5/programmer_reference/java_program.html
share/doc/db5/programmer_reference/libtp_usenix.pdf
share/doc/db5/programmer_reference/lock.html
share/doc/db5/programmer_reference/lock_am_conv.html
share/doc/db5/programmer_reference/lock_cam_conv.html
share/doc/db5/programmer_reference/lock_config.html
share/doc/db5/programmer_reference/lock_dead.html
share/doc/db5/programmer_reference/lock_deaddbg.html
share/doc/db5/programmer_reference/lock_max.html
share/doc/db5/programmer_reference/lock_nondb.html
share/doc/db5/programmer_reference/lock_notxn.html
share/doc/db5/programmer_reference/lock_page.html
share/doc/db5/programmer_reference/lock_stdmode.html
share/doc/db5/programmer_reference/lock_timeout.html
share/doc/db5/programmer_reference/lock_twopl.html
share/doc/db5/programmer_reference/log.html
share/doc/db5/programmer_reference/log_config.html
share/doc/db5/programmer_reference/log_limits.html
share/doc/db5/programmer_reference/magic.s5.be.txt
share/doc/db5/programmer_reference/magic.s5.le.txt
share/doc/db5/programmer_reference/magic.txt
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/programmer_reference/moreinfo.html
share/doc/db5/programmer_reference/mp.html
share/doc/db5/programmer_reference/mp_config.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/programmer_reference/mp_warm.html
share/doc/db5/programmer_reference/preface.html
share/doc/db5/programmer_reference/program.html
share/doc/db5/programmer_reference/program_cache.html
share/doc/db5/programmer_reference/program_compatible.html
share/doc/db5/programmer_reference/program_copy.html
share/doc/db5/programmer_reference/program_environ.html
share/doc/db5/programmer_reference/program_errorret.html
share/doc/db5/programmer_reference/program_faq.html
share/doc/db5/programmer_reference/program_mt.html
share/doc/db5/programmer_reference/program_namespace.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/programmer_reference/program_perfmon.html
share/doc/db5/programmer_reference/program_ram.html
share/doc/db5/programmer_reference/program_runtime.html
share/doc/db5/programmer_reference/program_scope.html
share/doc/db5/programmer_reference/refs.html
share/doc/db5/programmer_reference/rep.html
share/doc/db5/programmer_reference/rep_app.html
share/doc/db5/programmer_reference/rep_base_meth.html
share/doc/db5/programmer_reference/rep_bulk.html
share/doc/db5/programmer_reference/rep_clock_skew.html
share/doc/db5/programmer_reference/rep_comm.html
share/doc/db5/programmer_reference/rep_elect.html
share/doc/db5/programmer_reference/rep_ex.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/programmer_reference/rep_ex_chan.html
share/doc/db5/programmer_reference/rep_ex_comm.html
share/doc/db5/programmer_reference/rep_ex_rq.html
share/doc/db5/programmer_reference/rep_faq.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/programmer_reference/rep_filename.html
share/doc/db5/programmer_reference/rep_id.html
share/doc/db5/programmer_reference/rep_init.html
share/doc/db5/programmer_reference/rep_lease.html
share/doc/db5/programmer_reference/rep_mastersync.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/programmer_reference/rep_mgr_ack.html
share/doc/db5/programmer_reference/rep_mgr_meth.html
share/doc/db5/programmer_reference/rep_mgrmulti.html
share/doc/db5/programmer_reference/rep_newsite.html
share/doc/db5/programmer_reference/rep_partition.html
share/doc/db5/programmer_reference/rep_pri.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/programmer_reference/rep_replicate.html
share/doc/db5/programmer_reference/rep_ryw.html
share/doc/db5/programmer_reference/rep_trans.html
Changes 5.3.15: * Added support for verifying named in-memory dbs. * Added an integer key comparison function to improve performance through the SQL API. * Support build on the platforms where pthread_t is a struct. * Added an API call so the user can specify the size of the region in a heap db. * Improved Replication Manager's ability to recover from the (perhaps rare) phenomenon of two sites trying to connect to each other simultaneously, which used to result in loss of both connections, requiring a retry after the CONNECTION_RETRY timeout period. * Enhanced the interface for copying databases for a hot backup. Added configure support for --enable-atomicfileread. * Enhaced the log reading routine to detect that a log file is missing rather than returning that a zero length record was found. * Added pragma bdbsql_shared_resources to set or report the maximum amount of memory to be used by shared structures in the main environment region and bdbsql_lock_tablesize to set or report the number of buckets in the lock object hash table. These are advanced tuning features for applications with large number of tables or needs to reduce locking on concurrent long running transactions. * Added set_metadata_dir() and get_metadata_dir() to enable storage of persistent metadata files in a location other than the environment home directory. * Improved the error handling through the SQL API. Errors can be sent to a file with the use of the BDBSQL_ERROR_FILE pragma. * Database handles can now be configured to give exclusive access to the database. * XA transactions will now use transaction snapshots if the XA databases they operate on were configured with DB_MULTIVERSION. * Added additional stats fields into the C# API * Added pragma bdbsql_single_process to keep the Berkeley DB environment information on the heap instead of in shared memory. This option cannot be used if the database is accessed from multiple processes. * Improved the ability of DB->compact to move DB_HASH database pages to the begining of the file.
2012-01-18 14:46:50 +01:00
share/doc/db5/programmer_reference/rep_twosite.html
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/programmer_reference/repmgr_channels.html
share/doc/db5/programmer_reference/rq_conf.html
share/doc/db5/programmer_reference/second.javas
share/doc/db5/programmer_reference/sequence.html
share/doc/db5/programmer_reference/solaris.txt
share/doc/db5/programmer_reference/stl.html
share/doc/db5/programmer_reference/stl_complex_rw.html
share/doc/db5/programmer_reference/stl_container_specific.html
share/doc/db5/programmer_reference/stl_db_advanced_usage.html
share/doc/db5/programmer_reference/stl_db_usage.html
share/doc/db5/programmer_reference/stl_efficienct_use.html
share/doc/db5/programmer_reference/stl_examples.html
share/doc/db5/programmer_reference/stl_known_issues.html
share/doc/db5/programmer_reference/stl_memory_mgmt.html
share/doc/db5/programmer_reference/stl_misc.html
share/doc/db5/programmer_reference/stl_mt_usage.html
share/doc/db5/programmer_reference/stl_persistence.html
share/doc/db5/programmer_reference/stl_primitive_rw.html
share/doc/db5/programmer_reference/stl_txn_usage.html
share/doc/db5/programmer_reference/stl_usecase.html
share/doc/db5/programmer_reference/tcl.html
share/doc/db5/programmer_reference/tcl_error.html
share/doc/db5/programmer_reference/tcl_faq.html
share/doc/db5/programmer_reference/tcl_program.html
share/doc/db5/programmer_reference/tcl_using.html
share/doc/db5/programmer_reference/transapp.cs
share/doc/db5/programmer_reference/transapp.html
share/doc/db5/programmer_reference/transapp_admin.html
share/doc/db5/programmer_reference/transapp_app.html
share/doc/db5/programmer_reference/transapp_archival.html
share/doc/db5/programmer_reference/transapp_atomicity.html
share/doc/db5/programmer_reference/transapp_checkpoint.html
share/doc/db5/programmer_reference/transapp_cursor.html
share/doc/db5/programmer_reference/transapp_data_open.html
share/doc/db5/programmer_reference/transapp_deadlock.html
share/doc/db5/programmer_reference/transapp_env_open.html
share/doc/db5/programmer_reference/transapp_fail.html
share/doc/db5/programmer_reference/transapp_faq.html
share/doc/db5/programmer_reference/transapp_filesys.html
share/doc/db5/programmer_reference/transapp_hotfail.html
share/doc/db5/programmer_reference/transapp_inc.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/programmer_reference/transapp_journal.html
share/doc/db5/programmer_reference/transapp_logfile.html
share/doc/db5/programmer_reference/transapp_nested.html
share/doc/db5/programmer_reference/transapp_put.html
share/doc/db5/programmer_reference/transapp_read.html
share/doc/db5/programmer_reference/transapp_reclimit.html
share/doc/db5/programmer_reference/transapp_recovery.html
share/doc/db5/programmer_reference/transapp_term.html
share/doc/db5/programmer_reference/transapp_throughput.html
share/doc/db5/programmer_reference/transapp_tune.html
share/doc/db5/programmer_reference/transapp_why.html
share/doc/db5/programmer_reference/txn.html
share/doc/db5/programmer_reference/txn_config.html
share/doc/db5/programmer_reference/txn_limits.html
share/doc/db5/programmer_reference/witold.html
share/doc/db5/programmer_reference/writetest.cs
Changes 5.2.28: * Replication Manager now manages Group Membership. This allows sites to be added to and removed from the replication group dynamically. Replication Manager also now automatically keeps track of the group size (nsites). * Initial allocations for various non-pagebuffer (mpool) system resources may now be specified, as well as a total maximum of memory to use, rather than specifying a maximum value for each resource. * Implemented Berkeley DB globalization support architecture to enable localized and stripped error and output messages. * Added a new access method, DB_HEAP. Heap aims for efficient use (and re-use) of disk space. Keys in a heap database are automatically generated by BDB, it is recommended that one or more secondary indexes be used with a heap database. For full details on DB_HEAP, see the Programmer's Reference Guide. * Added a compatible mode for 32bit and 64bit Windows environment. * For the SQL API, concurrency between read and write transactions can now be enabled using "PRAGMA multiversion". Added several pragmas that can be used to configure the Berkeley DB datastore. * Add several new pragmas to provide in-process support for replication in the SQL API. * The Berkeley DB X/open compliant XA resource manager has been restored, including support for multi-threaded servers. * Improved the ability to recover from an application crash on connections through the SQL API. Berkeley DB will try to automatically clean up locks, mutexes and transactions from the failed process. * Add support for sequence usage in the SQL API using SQLite custom functions. * Add a pragma in the SQL API to allow execution of a cache trickle command. * Add a pragma in the SQL API to allow configuration of DB_SYSTEM_MEM environments. * The new db_env_set_win_security(SECURITY_ATTRIBUTES *) function allows an application to specify the particular Microsoft Windows security attributes to be used by Berkeley DB. This helps support applications which reduce their privileges after opening the environment.
2011-06-15 22:56:04 +02:00
share/doc/db5/programmer_reference/xa.html
share/doc/db5/programmer_reference/xa_build.html
share/doc/db5/programmer_reference/xa_faq.html
share/doc/db5/programmer_reference/xa_xa_config.html
share/doc/db5/programmer_reference/xa_xa_intro.html
share/doc/db5/programmer_reference/xa_xa_restrict.html
Changes 5.1.19: * Added Performance event monitoring support for DTrace and SystemTap which can be enabled during configuration. Static probes have been defined where statistics values are updated, where mutex or transactional consistency lock waits occur, and where some other potentially lengthy operations may be initiated. * Added a new acknowledge policy - DB_REPMGR_ACKS_ALL_AVAILABLE. * Added transactional bulk loading optimization for non-nested transactions. * Added exclusive transaction support for the SQL API. * Added support for bulk update and delete in C# API. * Added a db_replicate utility. * Added an implementation of the Online Backup API. * Added support in Berkeley DB SQL for the vacuum and incremental vacuum pragmas. * Added an option to automatically convert SQLite databases to Berkeley DB on opening. * Added BDBSQL_SHARE_PRIVATE, an option to enable inter-process sharing of DB_PRIVATE environments using multiple-reader. * Added database-level locking to optimize single-threaded operations and remove locking limitations for database load operations. * Added support for DB_INIT_REP, DB_PRIVATE, DB_REGISTER and DB_THREAD in DB_CONFIG file. * Added support for the BDBSQL_DEFAULT_PAGE_SIZE pragma to override Berkeley DB's choice of page size depending on the filesystem. Use SQLITE_DEFAULT_PAGE_SIZE rather than a hard-coded default. * Added an extension that allows access to binary files stored outside of the database. What is stored in the database is a pointer to the binary file. * Added .stat command to dbsql shell to print environment, table, and index statistics. * Added enhancements to reduce the size of indexes in the SQL API by allowing duplicates in the index database and moving the rowid from the index key into the index data. * Added a compile time flag BDBSQL_FILE_PER_TABLE that causes each table to be created in a separate file. This flag replaces the BDBSQL_SPLIT_META_TABLE flag. * Added the handling of read only and read write open of the same database in BDB SQL. * Added an encryption implementation to the SQL API.pkg
2010-09-16 09:53:32 +02:00
share/doc/db5/upgrading/BDB_Upgrading.pdf
share/doc/db5/upgrading/changelog_4_0_14.html
share/doc/db5/upgrading/changelog_4_1_24.html
share/doc/db5/upgrading/changelog_4_1_25.html
share/doc/db5/upgrading/changelog_4_2_52.html
share/doc/db5/upgrading/changelog_4_3_29.html
share/doc/db5/upgrading/changelog_4_4_16.html
share/doc/db5/upgrading/changelog_4_4_20.html
share/doc/db5/upgrading/changelog_4_5_20.html
share/doc/db5/upgrading/changelog_4_6.html
share/doc/db5/upgrading/changelog_4_7.html
share/doc/db5/upgrading/gettingStarted.css
share/doc/db5/upgrading/index.html
share/doc/db5/upgrading/introduction.html
share/doc/db5/upgrading/moreinfo.html
share/doc/db5/upgrading/preface.html
share/doc/db5/upgrading/upgrade_2_0_convert.html
share/doc/db5/upgrading/upgrade_2_0_disk.html
share/doc/db5/upgrading/upgrade_2_0_system.html
share/doc/db5/upgrading/upgrade_2_0_toc.html
share/doc/db5/upgrading/upgrade_3_0_close.html
share/doc/db5/upgrading/upgrade_3_0_cxx.html
share/doc/db5/upgrading/upgrade_3_0_db.html
share/doc/db5/upgrading/upgrade_3_0_db_cxx.html
share/doc/db5/upgrading/upgrade_3_0_dbenv.html
share/doc/db5/upgrading/upgrade_3_0_dbenv_cxx.html
share/doc/db5/upgrading/upgrade_3_0_dbinfo.html
share/doc/db5/upgrading/upgrade_3_0_disk.html
share/doc/db5/upgrading/upgrade_3_0_eacces.html
share/doc/db5/upgrading/upgrade_3_0_eagain.html
share/doc/db5/upgrading/upgrade_3_0_envopen.html
share/doc/db5/upgrading/upgrade_3_0_func.html
share/doc/db5/upgrading/upgrade_3_0_java.html
share/doc/db5/upgrading/upgrade_3_0_join.html
share/doc/db5/upgrading/upgrade_3_0_jump_set.html
share/doc/db5/upgrading/upgrade_3_0_lock_detect.html
share/doc/db5/upgrading/upgrade_3_0_lock_notheld.html
share/doc/db5/upgrading/upgrade_3_0_lock_put.html
share/doc/db5/upgrading/upgrade_3_0_lock_stat.html
share/doc/db5/upgrading/upgrade_3_0_log_register.html
share/doc/db5/upgrading/upgrade_3_0_log_stat.html
share/doc/db5/upgrading/upgrade_3_0_memp_stat.html
share/doc/db5/upgrading/upgrade_3_0_open.html
share/doc/db5/upgrading/upgrade_3_0_rmw.html
share/doc/db5/upgrading/upgrade_3_0_stat.html
share/doc/db5/upgrading/upgrade_3_0_toc.html
share/doc/db5/upgrading/upgrade_3_0_txn_begin.html
share/doc/db5/upgrading/upgrade_3_0_txn_commit.html
share/doc/db5/upgrading/upgrade_3_0_txn_stat.html
share/doc/db5/upgrading/upgrade_3_0_value_set.html
share/doc/db5/upgrading/upgrade_3_0_xa.html
share/doc/db5/upgrading/upgrade_3_1_btstat.html
share/doc/db5/upgrading/upgrade_3_1_config.html
share/doc/db5/upgrading/upgrade_3_1_disk.html
share/doc/db5/upgrading/upgrade_3_1_dup.html
share/doc/db5/upgrading/upgrade_3_1_env.html
share/doc/db5/upgrading/upgrade_3_1_log_register.html
share/doc/db5/upgrading/upgrade_3_1_logalloc.html
share/doc/db5/upgrading/upgrade_3_1_memp_register.html
share/doc/db5/upgrading/upgrade_3_1_put.html
share/doc/db5/upgrading/upgrade_3_1_set_feedback.html
share/doc/db5/upgrading/upgrade_3_1_set_paniccall.html
share/doc/db5/upgrading/upgrade_3_1_set_tx_recover.html
share/doc/db5/upgrading/upgrade_3_1_sysmem.html
share/doc/db5/upgrading/upgrade_3_1_tcl.html
share/doc/db5/upgrading/upgrade_3_1_tmp.html
share/doc/db5/upgrading/upgrade_3_1_toc.html
share/doc/db5/upgrading/upgrade_3_1_txn_check.html
share/doc/db5/upgrading/upgrade_3_2_callback.html
share/doc/db5/upgrading/upgrade_3_2_db_dump.html
share/doc/db5/upgrading/upgrade_3_2_disk.html
share/doc/db5/upgrading/upgrade_3_2_handle.html
share/doc/db5/upgrading/upgrade_3_2_incomplete.html
share/doc/db5/upgrading/upgrade_3_2_mutexlock.html
share/doc/db5/upgrading/upgrade_3_2_notfound.html
share/doc/db5/upgrading/upgrade_3_2_renumber.html
share/doc/db5/upgrading/upgrade_3_2_set_flags.html
share/doc/db5/upgrading/upgrade_3_2_toc.html
share/doc/db5/upgrading/upgrade_3_2_tx_recover.html
share/doc/db5/upgrading/upgrade_3_3_alloc.html
share/doc/db5/upgrading/upgrade_3_3_bigfile.html
share/doc/db5/upgrading/upgrade_3_3_conflict.html
share/doc/db5/upgrading/upgrade_3_3_disk.html
share/doc/db5/upgrading/upgrade_3_3_getswap.html
share/doc/db5/upgrading/upgrade_3_3_gettype.html
share/doc/db5/upgrading/upgrade_3_3_memp_fget.html
share/doc/db5/upgrading/upgrade_3_3_rpc.html
share/doc/db5/upgrading/upgrade_3_3_shared.html
share/doc/db5/upgrading/upgrade_3_3_toc.html
share/doc/db5/upgrading/upgrade_3_3_txn_prepare.html
share/doc/db5/upgrading/upgrade_4_0_asr.html
share/doc/db5/upgrading/upgrade_4_0_cxx.html
share/doc/db5/upgrading/upgrade_4_0_deadlock.html
share/doc/db5/upgrading/upgrade_4_0_disk.html
share/doc/db5/upgrading/upgrade_4_0_env.html
share/doc/db5/upgrading/upgrade_4_0_java.html
share/doc/db5/upgrading/upgrade_4_0_lock.html
share/doc/db5/upgrading/upgrade_4_0_lock_id_free.html
share/doc/db5/upgrading/upgrade_4_0_log.html
share/doc/db5/upgrading/upgrade_4_0_mp.html
share/doc/db5/upgrading/upgrade_4_0_rpc.html
share/doc/db5/upgrading/upgrade_4_0_set_lk_max.html
share/doc/db5/upgrading/upgrade_4_0_toc.html
share/doc/db5/upgrading/upgrade_4_0_txn.html
share/doc/db5/upgrading/upgrade_4_1_app_dispatch.html
share/doc/db5/upgrading/upgrade_4_1_checkpoint.html
share/doc/db5/upgrading/upgrade_4_1_cxx.html
share/doc/db5/upgrading/upgrade_4_1_disk.html
share/doc/db5/upgrading/upgrade_4_1_excl.html
share/doc/db5/upgrading/upgrade_4_1_fop.html
share/doc/db5/upgrading/upgrade_4_1_hash_nelem.html
share/doc/db5/upgrading/upgrade_4_1_incomplete.html
share/doc/db5/upgrading/upgrade_4_1_java.html
share/doc/db5/upgrading/upgrade_4_1_log_register.html
share/doc/db5/upgrading/upgrade_4_1_log_stat.html
share/doc/db5/upgrading/upgrade_4_1_memp_sync.html
share/doc/db5/upgrading/upgrade_4_1_toc.html
share/doc/db5/upgrading/upgrade_4_2_cksum.html
share/doc/db5/upgrading/upgrade_4_2_client.html
share/doc/db5/upgrading/upgrade_4_2_del.html
share/doc/db5/upgrading/upgrade_4_2_disk.html
share/doc/db5/upgrading/upgrade_4_2_java.html
share/doc/db5/upgrading/upgrade_4_2_lockng.html
share/doc/db5/upgrading/upgrade_4_2_nosync.html
share/doc/db5/upgrading/upgrade_4_2_priority.html
share/doc/db5/upgrading/upgrade_4_2_queue.html
share/doc/db5/upgrading/upgrade_4_2_repinit.html
share/doc/db5/upgrading/upgrade_4_2_tcl.html
share/doc/db5/upgrading/upgrade_4_2_toc.html
share/doc/db5/upgrading/upgrade_4_2_verify.html
share/doc/db5/upgrading/upgrade_4_3_cput.html
share/doc/db5/upgrading/upgrade_4_3_disk.html
share/doc/db5/upgrading/upgrade_4_3_enomem.html
share/doc/db5/upgrading/upgrade_4_3_err.html
share/doc/db5/upgrading/upgrade_4_3_fileopen.html
share/doc/db5/upgrading/upgrade_4_3_java.html
share/doc/db5/upgrading/upgrade_4_3_log.html
share/doc/db5/upgrading/upgrade_4_3_repl.html
share/doc/db5/upgrading/upgrade_4_3_rtc.html
share/doc/db5/upgrading/upgrade_4_3_stat.html
share/doc/db5/upgrading/upgrade_4_3_toc.html
share/doc/db5/upgrading/upgrade_4_3_verb.html
share/doc/db5/upgrading/upgrade_4_4_autocommit.html
share/doc/db5/upgrading/upgrade_4_4_clear.html
share/doc/db5/upgrading/upgrade_4_4_disk.html
share/doc/db5/upgrading/upgrade_4_4_isolation.html
share/doc/db5/upgrading/upgrade_4_4_joinenv.html
share/doc/db5/upgrading/upgrade_4_4_lockstat.html
share/doc/db5/upgrading/upgrade_4_4_mutex.html
share/doc/db5/upgrading/upgrade_4_4_toc.html
share/doc/db5/upgrading/upgrade_4_5_alive.html
share/doc/db5/upgrading/upgrade_4_5_applog.html
share/doc/db5/upgrading/upgrade_4_5_collect.html
share/doc/db5/upgrading/upgrade_4_5_config.html
share/doc/db5/upgrading/upgrade_4_5_deprecate.html
share/doc/db5/upgrading/upgrade_4_5_disk.html
share/doc/db5/upgrading/upgrade_4_5_elect.html
share/doc/db5/upgrading/upgrade_4_5_memp.html
share/doc/db5/upgrading/upgrade_4_5_pagesize.html
share/doc/db5/upgrading/upgrade_4_5_paniccall.html
share/doc/db5/upgrading/upgrade_4_5_rep_event.html
share/doc/db5/upgrading/upgrade_4_5_rep_set.html
share/doc/db5/upgrading/upgrade_4_5_source.html
share/doc/db5/upgrading/upgrade_4_5_toc.html
share/doc/db5/upgrading/upgrade_4_6_cursor.html
share/doc/db5/upgrading/upgrade_4_6_disk.html
share/doc/db5/upgrading/upgrade_4_6_event.html
share/doc/db5/upgrading/upgrade_4_6_full_election.html
share/doc/db5/upgrading/upgrade_4_6_memp_fput.html
share/doc/db5/upgrading/upgrade_4_6_memp_fset.html
share/doc/db5/upgrading/upgrade_4_6_toc.html
share/doc/db5/upgrading/upgrade_4_6_verb.html
share/doc/db5/upgrading/upgrade_4_6_verbose.html
share/doc/db5/upgrading/upgrade_4_6_win.html
share/doc/db5/upgrading/upgrade_4_7_disk.html
share/doc/db5/upgrading/upgrade_4_7_interdir.html
share/doc/db5/upgrading/upgrade_4_7_log.html
share/doc/db5/upgrading/upgrade_4_7_repapi.html
share/doc/db5/upgrading/upgrade_4_7_rtc.html
share/doc/db5/upgrading/upgrade_4_7_tcl.html
share/doc/db5/upgrading/upgrade_4_7_toc.html
share/doc/db5/upgrading/upgrade_process.html