Skip to content

Commit

Permalink
Add OracleCompiler
Browse files Browse the repository at this point in the history
  • Loading branch information
asherber committed Apr 19, 2019
1 parent e313304 commit 3f71661
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion PetaPoco.SqlKata/PetaPoco.SqlKata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

namespace PetaPoco.SqlKata
{
public enum CompilerType { SqlServer, MySql, Postgres, Firebird, SQLite };
public enum CompilerType { SqlServer, MySql, Postgres, Firebird, SQLite, Oracle };

public static class SqlKataExtensions
{
Expand All @@ -42,6 +42,7 @@ public static class SqlKataExtensions
{ CompilerType.Postgres, new Lazy<Compiler>(() => new PostgresCompiler()) },
{ CompilerType.Firebird, new Lazy<Compiler>(() => new FirebirdCompiler()) },
{ CompilerType.SQLite, new Lazy<Compiler>(() => new SqliteCompiler()) },
{ CompilerType.Oracle, new Lazy<Compiler>(() => new OracleCompiler()) },
};

/// <summary>
Expand Down

0 comments on commit 3f71661

Please sign in to comment.