elsa-core/src/apps/Elsa.Server.Web/Enums/SqlDatabaseProvider.cs
Sipke Schoorstra 26e2b1fb56 Add Oracle database support to the project
This commit introduces Oracle database integration by adding necessary configurations, entity mappings, and Docker Compose setup. Oracle-specific mappings ensure compatibility with NCLOB for large data handling. The changes also include updates to appsettings, enum for SqlDatabaseProvider, and project references to support Oracle.
2025-01-31 00:31:09 +01:00

11 lines
145 B
C#

namespace Elsa.Server.Web;
public enum SqlDatabaseProvider
{
SqlServer,
Sqlite,
MySql,
PostgreSql,
Oracle,
CockroachDb
}