Skip to content

Commit ad67b89

Browse files
committed
made clear that OleDb not yet supported
1 parent 528aa16 commit ad67b89

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

docs/storage/sql-storage/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Note the `{0}` placeholder. `String.Format` will be applied to the statements pa
6969
The ProviderName must be one the following supported providers. Otherwise a custom provider needs to be configured. See Custom Providers below.
7070

7171
* `System.Data.SqlClient` - has been tested with Sql Server 2008 and above
72-
* `System.Data.OleDbClient` - tested with Sql Server
72+
* `System.Data.OleDb` - not yet tested so probably not operational.
7373
* `System.Data.SqlServerCe.4.0` - will use `MsSqlStatements` but has not been tested
7474

7575
## Custom Providers

src/OrigoDB.Core/Storage/Sql/OleDbStatements.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
namespace OrigoDB.Core.Storage.Sql
44
{
5+
/// <summary>
6+
/// Not yet tested! Please let us know if try it out
7+
/// </summary>
58
public class OleDbStatements : SqlStatements
69
{
710
public OleDbStatements()

src/OrigoDB.Core/Storage/Sql/SqlCommandStore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ static SqlCommandStore()
2727
{
2828
ProviderStatements["System.Data.SqlClient"] = new MsSqlStatements();
2929
ProviderStatements["System.Data.SqlServerCe.4.0"] = new MsSqlStatements();
30-
ProviderStatements["System.Data.OleDbClient"] = new OleDbStatements();
30+
ProviderStatements["System.Data.OleDb"] = new OleDbStatements();
3131
}
3232

3333

0 commit comments

Comments
 (0)