File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
src/OrigoDB.Core/Storage/Sql Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ Note the `{0}` placeholder. `String.Format` will be applied to the statements pa
6969The 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
Original file line number Diff line number Diff line change 22
33namespace 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 ( )
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments