public MySQLPlatformDatabaseServices(IRuntimeDatabaseConfiguration databaseConfiguration) : base(databaseConfiguration) { objectFactory = new MySQLPlatformDatabaseObjectFactory(this); executionService = new ExecutionService.MySQLPlatformExecutionService(this); dmlService = new DMLService.MySQLPlatformDMLService(this); introspectionService = new MySQLPlatformIntrospectionService(this); ddlService = new DDLService.MySQLDDLService(this); sessionService = new Session.MySQLPlatformSessionService(this); }
public PlatformDMLProgrammaticSQL(IPlatformDMLService dmlService) : base(dmlService) { }
protected BasePlatformDMLProgrammaticSQL(IPlatformDMLService dmlService) { DMLService = dmlService; }