Пример #1
0
 /// <summary>
 ///     opens an
 ///     <see cref="Db4objects.Db4o.IObjectContainer">IObjectContainer</see>
 ///     on the specified database file for local use.
 ///     <br />
 ///     <br />
 ///     A database file can only be opened once, subsequent attempts to
 ///     open another
 ///     <see cref="Db4objects.Db4o.IObjectContainer">IObjectContainer</see>
 ///     against the same file will result in a
 ///     <see cref="Db4objects.Db4o.Ext.DatabaseFileLockedException"> DatabaseFileLockedException</see>
 ///     .
 ///     <br />
 ///     <br />
 ///     Database files can only be accessed for readwrite access from one
 ///     process at one time. All versions except for db4o mobile edition
 ///     use an internal mechanism to lock the database file for other
 ///     processes.
 ///     <br />
 ///     <br />
 /// </summary>
 /// <param name="config">
 ///     a custom
 ///     <see cref="Db4objects.Db4o.Config.IConfiguration">IConfiguration</see>
 ///     instance to be obtained via
 ///     <see cref="newConfiguration">newConfiguration</see>
 /// </param>
 /// <param name="databaseFileName">
 ///     an absolute or relative path to the database
 ///     file
 /// </param>
 /// <returns>
 ///     an open
 ///     <see cref="Db4objects.Db4o.IObjectContainer">IObjectContainer</see>
 /// </returns>
 /// <seealso cref="Db4objects.Db4o.Config.IConfiguration.ReadOnly">
 ///     Db4objects.Db4o.Config.IConfiguration.ReadOnly
 /// </seealso>
 /// <seealso cref="Db4objects.Db4o.Config.IConfiguration.Encrypt">
 ///     Db4objects.Db4o.Config.IConfiguration.Encrypt
 /// </seealso>
 /// <seealso cref="Db4objects.Db4o.Config.IConfiguration.Password">
 ///     Db4objects.Db4o.Config.IConfiguration.Password
 /// </seealso>
 /// <exception cref="Db4objects.Db4o.Ext.Db4oIOException">
 ///     I/O operation failed or was unexpectedly
 ///     interrupted.
 /// </exception>
 /// <exception cref="Db4objects.Db4o.Ext.DatabaseFileLockedException">
 ///     the required database file is locked by
 ///     another process.
 /// </exception>
 /// <exception cref="Db4objects.Db4o.Ext.IncompatibleFileFormatException">
 ///     runtime
 ///     <see cref="Db4objects.Db4o.Config.IConfiguration">configuration</see>
 ///     is not compatible with the configuration of the database file.
 /// </exception>
 /// <exception cref="Db4objects.Db4o.Ext.OldFormatException">
 ///     open operation failed because the database file is in old format
 ///     and
 ///     <see cref="Db4objects.Db4o.Config.IConfiguration.AllowVersionUpdates">
 ///         Db4objects.Db4o.Config.IConfiguration.AllowVersionUpdates
 ///     </see>
 ///     is set to false.
 /// </exception>
 /// <exception cref="Db4objects.Db4o.Ext.DatabaseReadOnlyException">
 ///     database was configured as read-only.
 /// </exception>
 public static IEmbeddedObjectContainer OpenFile(IEmbeddedConfiguration config, string
                                                 databaseFileName)
 {
     if (null == config)
     {
         throw new ArgumentNullException();
     }
     return(ObjectContainerFactory.OpenObjectContainer(config, databaseFileName));
 }
Пример #2
0
 public static IObjectContainer OpenFile(IConfiguration config, string databaseFileName
                                         )
 {
     return(ObjectContainerFactory.OpenObjectContainer(Db4oLegacyConfigurationBridge.AsEmbeddedConfiguration
                                                           (config), databaseFileName));
 }