<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to SqlCeErrorLogProvider</title><link>https://sourceforge.net/p/elfar/wiki/SqlCeErrorLogProvider/</link><description>Recent changes to SqlCeErrorLogProvider</description><atom:link href="https://sourceforge.net/p/elfar/wiki/SqlCeErrorLogProvider/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 24 Feb 2012 13:10:34 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/elfar/wiki/SqlCeErrorLogProvider/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage SqlCeErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlCeErrorLogProvider/</link><description>&lt;pre&gt;--- v10 
+++ v11 
@@ -1,6 +1,6 @@
 ## SqlCeErrorLogProvider Class ##
 
-Manages storage error log information in a SQL Server CE database.
+Manages the storage and retrieval of error log information in a SQL Server CE database.
 
 ### Syntax ###
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Fri, 24 Feb 2012 13:10:34 -0000</pubDate><guid>https://sourceforge.net961cb2ad560c7681bbe2253b25f8eb7c5fa5ef6c</guid></item><item><title>WikiPage SqlCeErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlCeErrorLogProvider/</link><description>&lt;pre&gt;--- v9 
+++ v10 
@@ -5,7 +5,7 @@
 ### Syntax ###
 
     :::c#
-    public class SqlCeErrorLogProvider : DbErrorLogProvider
+    public class SqlCeErrorLogProvider : FileBasedDbErrorLogProvider
 ####
 The `SqlCeErrorLogProvider` type exposes the following members.
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Fri, 24 Feb 2012 01:42:36 -0000</pubDate><guid>https://sourceforge.net024b2c0f2d85bfe330d621a29f72c2f7239743e9</guid></item><item><title>WikiPage SqlCeErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlCeErrorLogProvider/</link><description>&lt;pre&gt;--- v8 
+++ v9 
@@ -13,7 +13,7 @@
 
 Name                                                                   | Description
 ----                                                                   | -----------
-[SqlCeErrorLogProvider(String, String)](../SqlCeErrorLogProvider.Ctor) | Initialises a new instance of the `SqlCeErrorLogProvider` class.
+[SqlCeErrorLogProvider(String)](../SqlCeErrorLogProvider.Ctor) | Initialises a new instance of the `SqlCeErrorLogProvider` class.
 
 ### Methods ###
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Fri, 24 Feb 2012 01:28:38 -0000</pubDate><guid>https://sourceforge.netae52d4bd569f55cf0ae9c8b53aad9671ccb40869</guid></item><item><title>WikiPage SqlCeErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlCeErrorLogProvider/</link><description>&lt;pre&gt;--- v7 
+++ v8 
@@ -1,37 +1,31 @@
-## SqlCeErrorLogProvider Constructor(String) ##
-
-Initialises a new instance of the `SqlCeErrorLogProvider` class.
-
+## SqlCeErrorLogProvider Class ##
+
+Manages storage error log information in a SQL Server CE database.
+
 ### Syntax ###
 
     :::c#
-    public SqlCeErrorLogProvider(
-        string connectionString = @"|DataDirectory|\Elfar.sdf"
-    )
-#
-### Parameters ###
-
-*connectionString*
-&gt; Type: System.String
-The connection string or the name of the `&lt;connectionStrings&gt;` item to be used to open the SQL Server CE database.
-
-### Remarks ###
-
-`SqlCeErrorLogProvider` manages storage of error log information in a SQL Server CE database.
-
-### Examples ###
-
-The following example shows the most basic instantiation of the `SqlCeErrorLogProvider`, which uses either the `'Elfar'` `&lt;connectionStrings&gt;` item or the first item in the `&lt;connectionStrings&gt;` collection (if defined).
-
-    :::c#
-    var provider = new SqlCeErrorLogProvider();
-##
-The following example shows the name of the `&lt;connectionStrings&gt;` item being specified.
-
-    :::c#
-    var provider = new SqlCeErrorLogProvider("Logs");
-##
-The following example shows the connection string being specified.
-
-    :::c#
-    var provider = new SqlCeErrorLogProvider(@"|DataDirectory|\Logs.sdf");
+    public class SqlCeErrorLogProvider : DbErrorLogProvider
+####
+The `SqlCeErrorLogProvider` type exposes the following members.
+
+### Constructors ###
+
+Name                                                                   | Description
+----                                                                   | -----------
+[SqlCeErrorLogProvider(String, String)](../SqlCeErrorLogProvider.Ctor) | Initialises a new instance of the `SqlCeErrorLogProvider` class.
+
+### Methods ###
+
+Name                                  | Description
+----                                  | -----------
+[Get](../SqlCeErrorLogProvider.Get)   | Gets an error log.
+[List](../SqlCeErrorLogProvider.List) | Gets a list of error logs.
+[Save](../SqlCeErrorLogProvider.Save) | Saves an error log.
+
+### Properties ###
+
+Name                                                | Description
+----                                                | -----------
+[Application](../SqlCeErrorLogProvider.Application) | Gets the name of the application.
+[Total](../SqlCeErrorLogProvider.Total)             | Gets the total number of error logs.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Fri, 24 Feb 2012 01:21:12 -0000</pubDate><guid>https://sourceforge.net150dec61adc5931867515dac682d0d47ee1a1730</guid></item><item><title>WikiPage SqlCeErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlCeErrorLogProvider/</link><description>&lt;pre&gt;--- v6 
+++ v7 
@@ -1,27 +1,25 @@
-## SqlCeErrorLogProvider ##
-
-### SqlCeErrorLogProvider Constructor(String) ###
-
+## SqlCeErrorLogProvider Constructor(String) ##
+
 Initialises a new instance of the `SqlCeErrorLogProvider` class.
 
-#### Syntax ####
+### Syntax ###
 
     :::c#
     public SqlCeErrorLogProvider(
         string connectionString = @"|DataDirectory|\Elfar.sdf"
     )
 #
-#### Parameters ####
+### Parameters ###
 
 *connectionString*
 &gt; Type: System.String
 The connection string or the name of the `&lt;connectionStrings&gt;` item to be used to open the SQL Server CE database.
 
-#### Remarks ####
+### Remarks ###
 
 `SqlCeErrorLogProvider` manages storage of error log information in a SQL Server CE database.
 
-#### Examples ####
+### Examples ###
 
 The following example shows the most basic instantiation of the `SqlCeErrorLogProvider`, which uses either the `'Elfar'` `&lt;connectionStrings&gt;` item or the first item in the `&lt;connectionStrings&gt;` collection (if defined).
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 23:08:47 -0000</pubDate><guid>https://sourceforge.net934b2e9e15890655a28a31f9d330e02a32271c76</guid></item><item><title>WikiPage SqlCeErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlCeErrorLogProvider/</link><description>&lt;pre&gt;--- v5 
+++ v6 
@@ -2,7 +2,7 @@
 
 ### SqlCeErrorLogProvider Constructor(String) ###
 
-Initialises a new instance of the SqlCeErrorLogProvider class.
+Initialises a new instance of the `SqlCeErrorLogProvider` class.
 
 #### Syntax ####
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 22:11:49 -0000</pubDate><guid>https://sourceforge.net2e2a54e09580345d0fed3e9cf24e3efb5dec0cae</guid></item><item><title>WikiPage SqlCeErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlCeErrorLogProvider/</link><description>&lt;pre&gt;--- v4 
+++ v5 
@@ -31,9 +31,9 @@
 The following example shows the name of the `&lt;connectionStrings&gt;` item being specified.
 
     :::c#
-    var provider = new SqlCeErrorLogProvider(connectionString: @"Logs");
+    var provider = new SqlCeErrorLogProvider("Logs");
 ##
 The following example shows the connection string being specified.
 
     :::c#
-    var provider = new SqlCeErrorLogProvider(connectionString: @"|DataDirectory|\Logs.sdf");
+    var provider = new SqlCeErrorLogProvider(@"|DataDirectory|\Logs.sdf");
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 20:48:55 -0000</pubDate><guid>https://sourceforge.net1402356f6862af219bae4b61fd341dd78336b14c</guid></item><item><title>WikiPage SqlCeErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlCeErrorLogProvider/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -1,6 +1,6 @@
 ## SqlCeErrorLogProvider ##
 
-### SqlCeErrorLogProvider Constructor(String, String) ###
+### SqlCeErrorLogProvider Constructor(String) ###
 
 Initialises a new instance of the SqlCeErrorLogProvider class.
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 20:48:31 -0000</pubDate><guid>https://sourceforge.net139a373ff56134004a9201e8f5802b964399dc2e</guid></item><item><title>WikiPage SqlCeErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlCeErrorLogProvider/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -37,4 +37,3 @@
 
     :::c#
     var provider = new SqlCeErrorLogProvider(connectionString: @"|DataDirectory|\Logs.sdf");
-#
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 20:44:02 -0000</pubDate><guid>https://sourceforge.netd58d1653df81641360db51b4cd9d6828acfcb1a8</guid></item><item><title>WikiPage SqlCeErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlCeErrorLogProvider/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -8,48 +8,33 @@
 
     :::c#
     public SqlCeErrorLogProvider(
-        string application = null,
         string connectionString = @"|DataDirectory|\Elfar.sdf"
     )
 #
 #### Parameters ####
 
-*application*
-&gt; Type: System.String
-The name of the application to store and retrieve error log information for.
-
 *connectionString*
 &gt; Type: System.String
-The connection string or the name of the `&lt;connectionStrings&gt;` item to be used to open the SQL Server database.
+The connection string or the name of the `&lt;connectionStrings&gt;` item to be used to open the SQL Server CE database.
 
 #### Remarks ####
 
-`SqlCeErrorLogProvider` manages storage of error log information in a SQL Server database.
+`SqlCeErrorLogProvider` manages storage of error log information in a SQL Server CE database.
 
 #### Examples ####
 
 The following example shows the most basic instantiation of the `SqlCeErrorLogProvider`, which uses either the `'Elfar'` `&lt;connectionStrings&gt;` item or the first item in the `&lt;connectionStrings&gt;` collection (if defined).
 
     :::c#
     var provider = new SqlCeErrorLogProvider();
 ##
-The following example shows the application name being specified.
-
-    :::c#
-    var provider = new SqlCeErrorLogProvider("/");
-##
-The following example shows the name of the `&lt;connectionStrings&gt;` item being specified, without the application name.
-
-    :::c#
-    var provider = new SqlCeErrorLogProvider(connectionString: @"AppDb");
-##
-The following example shows the connection string being specified, without the application name.
-
-    :::c#
-    var provider = new SqlCeErrorLogProvider(connectionString: @"Server=...;Database=...;User=...;Password=...");
-##
-The following example shows both the application name and the name of the `&lt;connectionStrings&gt;` item being specified.
-
-    :::c#
-    var provider = new SqlCeErrorLogProvider("/", @"AppDb");
+The following example shows the name of the `&lt;connectionStrings&gt;` item being specified.
+
+    :::c#
+    var provider = new SqlCeErrorLogProvider(connectionString: @"Logs");
+##
+The following example shows the connection string being specified.
+
+    :::c#
+    var provider = new SqlCeErrorLogProvider(connectionString: @"|DataDirectory|\Logs.sdf");
 #
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 20:29:13 -0000</pubDate><guid>https://sourceforge.nete5c0752bf5afaa85d516bc362a760aeda56038ab</guid></item></channel></rss>