public SameVmClientEngine(NeoDatis.Odb.Core.Server.Layers.Layer3.IODBServerExt server
                           , string baseIdentifier) : base(server.GetParameters(baseIdentifier, true))
 {
     this.server = server;
     // Call super class init
     base.InitODBConnection();
 }
		public SameVmClientEngine(NeoDatis.Odb.Core.Server.Layers.Layer3.IODBServerExt server
			, string baseIdentifier) : base(server.GetParameters(baseIdentifier, true))
		{
			this.server = server;
			// Call super class init
			base.InitODBConnection();
		}
		public ClientServerConnection(NeoDatis.Odb.Core.Server.Layers.Layer3.IODBServerExt
			 server, bool automaticallyCreateDatabase)
		{
			this.debug = NeoDatis.Odb.OdbConfiguration.LogServerConnections();
			this.automaticallyCreateDatabase = automaticallyCreateDatabase;
			this.server = server;
			this.sessionManager = NeoDatis.Odb.OdbConfiguration.GetCoreProvider().GetClientServerSessionManager
				();
		}
Example #4
0
 public SameVmConnectionThread(NeoDatis.Odb.Core.Server.Layers.Layer3.IODBServerExt
                               server, bool automaticallyCreateDatabase) : base(server, automaticallyCreateDatabase
                                                                                )
 {
 }
Example #5
0
 /// <summary>TODO set the constructor as protected</summary>
 public SameVMODBClient(NeoDatis.Odb.Core.Server.Layers.Layer3.IODBServerExt server
                        , string baseIdentifier) : base(new NeoDatis.Odb.Impl.Core.Server.Layers.Layer3.Engine.SameVmClientEngine
                                                            (server, baseIdentifier))
 {
 }
Example #6
0
 public DefaultConnectionThread(NeoDatis.Odb.Core.Server.Layers.Layer3.IODBServerExt
                                server, System.Net.Sockets.TcpClient connection, bool automaticallyCreateDatabase
                                ) : base(server, automaticallyCreateDatabase)
 {
     this.socketConnection = connection;
 }