Skip to content

Commit 063ac4d

Browse files
Remove sqlite example.. doesn't work. Update README.md
1 parent 10f68ac commit 063ac4d

File tree

6 files changed

+2
-256
lines changed

6 files changed

+2
-256
lines changed

Example/SqliteExample/App.config

-55
This file was deleted.

Example/SqliteExample/Hangfire.FluentNHibernateStorage.SqlServerExample.csproj

-82
This file was deleted.

Example/SqliteExample/Program.cs

-72
This file was deleted.

Example/SqliteExample/Properties/AssemblyInfo.cs

-38
This file was deleted.

Example/SqliteExample/packages.config

-7
This file was deleted.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
FluentNHibernate storage implementation of [Hangfire](http://hangfire.io/) - fire-and-forget, delayed and recurring tasks runner for .NET. Scalable and reliable background job runner. Supports multiple servers, CPU and I/O intensive, long-running and short-running jobs.
55

6-
This implementation supports Hangfire storage with intended primary support on MS SQL Server, MySQL, PostgreSQL, Oracle, and DB2. I've added hooks for the serverless databases, which are MS SQL Compact Edition, SQLite, and Jet (Access), but as the SQLite implementation quickly falls on its face, I wouldn't advise use of any of these three.
6+
This implementation supports Hangfire storage with intended primary support on MS SQL Server, MySQL, PostgreSQL, Oracle, and DB2. Firebird is also an option. Though FluentNHibernate supports SQLite, MS Access (Jet), and SQL Server Compact Edition, none of these proved to work, and there's no plan to support them.
77

88
## Installation
99

@@ -42,7 +42,7 @@ namespace Hangfire.FluentNHibernate.SampleApplication
4242
};
4343
4444
//THIS SECTION GETS THE STORAGE PROVIDER
45-
var PersistenceConfigurerType = PersistenceConfigurerEnum.MsSql2012;
45+
var PersistenceConfigurerType = ProviderTypeEnum.MsSql2012;
4646
var connectionString = ConfigurationManager.ConnectionStrings["someConnectionString"].ConnectionString;
4747
var storage = FluentNHibernateStorageFactory.For(PersistenceConfigurerType, connectionString, options);
4848

0 commit comments

Comments
 (0)