<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;"><span style="font-family: arial,helvetica,sans-serif;">Hi there,</span><br style="font-family: arial,helvetica,sans-serif;"><br style="font-family: arial,helvetica,sans-serif;"><span style="font-family: arial,helvetica,sans-serif;">Was reading through the documentation and found something on the oracle website about the possibility of loading bulk key and values into a hash or btree db using the flag = </span><code style="font-family: arial,helvetica,sans-serif;" class="literal">DB_MULTIPLE. Not trying to be picky or anything just wanted to know whether that is something yet to be implemented to </code><span style="font-family: arial,helvetica,sans-serif;">bsddb3 module.?</span><br style="font-family: arial,helvetica,sans-serif;"><br style="font-family: arial,helvetica,sans-serif;"><span style="font-family: arial,helvetica,sans-serif;">Again thanks a lot for
 the wonderful module.</span><br style="font-family: arial,helvetica,sans-serif;"><br style="font-family: arial,helvetica,sans-serif;"><span style="font-family: arial,helvetica,sans-serif;">Thanks again</span><br><br>#Sample code<br><code class="literal"><br></code>from bsddb3 import db<br><br>db1 = db.DB()<br>db1.open("Temp.db")<br><br>keys = ('key1','key2','key3')<br>val = ('10','15','20')<br><br>db1.put(keys, val, None, DB_MULTIPLE)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>db1.close()<br><br>###<br>This did not work. Any thoughts.?<br><br>Thanks<br></td></tr></table><br>