Store the key/data pair in the database, replacing any previously
            existing key if duplicates are disallowed, or adding a duplicate
            data item if duplicates are allowed.
            
    Namespace: 
   BerkeleyDBAssembly: libdb_dotnet51 (in libdb_dotnet51.dll) Version: 5.1.22.0
 Syntax
Syntax
| C# | 
|---|
| public void Put( DatabaseEntry key, DatabaseEntry data ) | 
| Visual Basic (Declaration) | 
|---|
| Public Sub Put ( _ key As DatabaseEntry, _ data As DatabaseEntry _ ) | 
| Visual C++ | 
|---|
| public: void Put( DatabaseEntry^ key, DatabaseEntry^ data ) | 
Parameters
- key
- Type: BerkeleyDB..::.DatabaseEntry
 The key to store in the database
- data
- Type: BerkeleyDB..::.DatabaseEntry
 The data item to store in the database





