TDatabaseManager.Update Method
Overloads
- TDatabaseManager.Update(IDBConnection)
- TDatabaseManager.Update(IDBConnection, TMappingExplorer)
- TDatabaseManager.Update(IDBConnection, TArray<TMappingExplorer>)
TDatabaseManager.Update(IDBConnection)
Validates and updates the database schema for the default mapping model using the given connection.
Syntax
Unit: Aurelius.Engine.DatabaseManager
class procedure TDatabaseManager.Update(Connection: IDBConnection); overload;
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| Connection | IDBConnection | The database connection to use. |
See also
TDatabaseManager.Update(IDBConnection, TMappingExplorer)
Validates and updates the database schema for a specific mapping explorer using the given connection.
Syntax
Unit: Aurelius.Engine.DatabaseManager
class procedure TDatabaseManager.Update(Connection: IDBConnection; AExplorer: TMappingExplorer); overload;
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| Connection | IDBConnection | The database connection to use. | |
| AExplorer | TMappingExplorer | The mapping explorer that defines the target schema. |
See also
TDatabaseManager.Update(IDBConnection, TArray<TMappingExplorer>)
Validates and updates the database schema for multiple mapping explorers using the given connection.
Syntax
Unit: Aurelius.Engine.DatabaseManager
class procedure TDatabaseManager.Update(Connection: IDBConnection; AExplorers: TArray<TMappingExplorer>); overload;
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| Connection | IDBConnection | The database connection to use. | |
| AExplorers | TArray<TMappingExplorer> | The array of mapping explorers that define the target schema. |