<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to SqlErrorLogProvider</title><link>https://sourceforge.net/p/elfar/wiki/SqlErrorLogProvider/</link><description>Recent changes to SqlErrorLogProvider</description><atom:link href="https://sourceforge.net/p/elfar/wiki/SqlErrorLogProvider/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 24 Feb 2012 13:11:43 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/elfar/wiki/SqlErrorLogProvider/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage SqlErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlErrorLogProvider/</link><description>&lt;pre&gt;--- v10 
+++ v11 
@@ -1,6 +1,6 @@
 ## SqlErrorLogProvider Class ##
 
-Manages storage error log information in a SQL Server database.
+Manages the storage and retrieval of error log information in a SQL Server 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:11:43 -0000</pubDate><guid>https://sourceforge.netbe79c31f1ae9cdc81df1d568eab199632a4955aa</guid></item><item><title>WikiPage SqlErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlErrorLogProvider/</link><description>&lt;pre&gt;--- v9 
+++ v10 
@@ -11,6 +11,21 @@
 
 ### Constructors ###
 
-Name                              | Description
-----                              | -----------
+Name                                                               | Description
+----                                                               | -----------
 [SqlErrorLogProvider(String, String)](../SqlErrorLogProvider.Ctor) | Initialises a new instance of the `SqlErrorLogProvider` class.
+
+### Methods ###
+
+Name                                | Description
+----                                | -----------
+[Get](../SqlErrorLogProvider.Get)   | Gets an error log.
+[List](../SqlErrorLogProvider.List) | Gets a list of error logs.
+[Save](../SqlErrorLogProvider.Save) | Saves an error log.
+
+### Properties ###
+
+Name                                              | Description
+----                                              | -----------
+[Application](../SqlErrorLogProvider.Application) | Gets the name of the application.
+[Total](../SqlErrorLogProvider.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:11:38 -0000</pubDate><guid>https://sourceforge.nete996bd374e74266d3cf1a2c7ddb03125a00a3f3e</guid></item><item><title>WikiPage SqlErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlErrorLogProvider/</link><description>&lt;pre&gt;--- v8 
+++ v9 
@@ -5,7 +5,7 @@
 ### Syntax ###
 
     :::c#
-    public class SqlErrorLogProvider
+    public class SqlErrorLogProvider : DbErrorLogProvider
 ####
 The `SqlErrorLogProvider` 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 00:32:54 -0000</pubDate><guid>https://sourceforge.net55f8ba2161ccd2c9c17f4a316f48a23e9c8fbd50</guid></item><item><title>WikiPage SqlErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlErrorLogProvider/</link><description>&lt;pre&gt;--- v7 
+++ v8 
@@ -1,52 +1,16 @@
-## SqlErrorLogProvider Constructor(String, String) ##
-
-Initialises a new instance of the `SqlErrorLogProvider` class.
-
+## SqlErrorLogProvider Class ##
+
+Manages storage error log information in a SQL Server database.
+
 ### Syntax ###
 
     :::c#
-    public SqlErrorLogProvider(
-        string application = null,
-        string connectionString = null
-    )
-#
-### 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.
-
-### Remarks ###
-
-`SqlErrorLogProvider` manages storage of error log information in a SQL Server database.
-
-### Examples ###
-
-The following example shows the most basic instantiation of the `SqlErrorLogProvider`, 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 SqlErrorLogProvider();
-##
-The following example shows the application name being specified.
-
-    :::c#
-    var provider = new SqlErrorLogProvider("/");
-##
-The following example shows the name of the `&lt;connectionStrings&gt;` item being specified, without the application name.
-
-    :::c#
-    var provider = new SqlErrorLogProvider(connectionString: "Logs");
-##
-The following example shows the connection string being specified, without the application name.
-
-    :::c#
-    var provider = new SqlErrorLogProvider(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 SqlErrorLogProvider("/", "Logs");
+    public class SqlErrorLogProvider
+####
+The `SqlErrorLogProvider` type exposes the following members.
+
+### Constructors ###
+
+Name                              | Description
+----                              | -----------
+[SqlErrorLogProvider(String, String)](../SqlErrorLogProvider.Ctor) | Initialises a new instance of the `SqlErrorLogProvider` class.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Fri, 24 Feb 2012 00:32:21 -0000</pubDate><guid>https://sourceforge.netb53d6229d122dc9310aeab28c7e85fb875e755cd</guid></item><item><title>WikiPage SqlErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlErrorLogProvider/</link><description>&lt;pre&gt;--- v6 
+++ v7 
@@ -1,32 +1,30 @@
-## SqlErrorLogProvider ##
-
-### SqlErrorLogProvider Constructor(String, String) ###
-
+## SqlErrorLogProvider Constructor(String, String) ##
+
 Initialises a new instance of the `SqlErrorLogProvider` class.
 
-#### Syntax ####
+### Syntax ###
 
     :::c#
     public SqlErrorLogProvider(
         string application = null,
         string connectionString = null
     )
 #
-#### Parameters ####
+### 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.
 
-#### Remarks ####
+### Remarks ###
 
 `SqlErrorLogProvider` manages storage of error log information in a SQL Server database.
 
-#### Examples ####
+### Examples ###
 
 The following example shows the most basic instantiation of the `SqlErrorLogProvider`, 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:06:49 -0000</pubDate><guid>https://sourceforge.netd70a8f5227324bb713e1b6b3feb826e834a51fc8</guid></item><item><title>WikiPage SqlErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlErrorLogProvider/</link><description>&lt;pre&gt;--- v5 
+++ v6 
@@ -2,7 +2,7 @@
 
 ### SqlErrorLogProvider Constructor(String, String) ###
 
-Initialises a new instance of the SqlErrorLogProvider class.
+Initialises a new instance of the `SqlErrorLogProvider` 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:25 -0000</pubDate><guid>https://sourceforge.net9bf2acf43941961cd7597fda7845815da72a1724</guid></item><item><title>WikiPage SqlErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlErrorLogProvider/</link><description>&lt;pre&gt;--- v4 
+++ v5 
@@ -46,7 +46,7 @@
 The following example shows the connection string being specified, without the application name.
 
     :::c#
-    var provider = new SqlErrorLogProvider(connectionString: @"Server=...;Database=...;User=...;Password=...");
+    var provider = new SqlErrorLogProvider(connectionString: "Server=...;Database=...;User=...;Password=...");
 ##
 The following example shows both the application name and the name of the `&lt;connectionStrings&gt;` item being specified.
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 21:06:06 -0000</pubDate><guid>https://sourceforge.net7368394f3298a53c157fd54b69196e3d575f0429</guid></item><item><title>WikiPage SqlErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlErrorLogProvider/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -41,14 +41,14 @@
 The following example shows the name of the `&lt;connectionStrings&gt;` item being specified, without the application name.
 
     :::c#
-    var provider = new SqlErrorLogProvider(connectionString: @"Logs");
-##
+    var provider = new SqlErrorLogProvider(connectionString: "Logs");
+##
 The following example shows the connection string being specified, without the application name.
 
     :::c#
     var provider = new SqlErrorLogProvider(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 SqlErrorLogProvider("/", @"Logs");
+    var provider = new SqlErrorLogProvider("/", "Logs");
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steven Bey</dc:creator><pubDate>Thu, 23 Feb 2012 21:05:48 -0000</pubDate><guid>https://sourceforge.net7da6ee738d9243a51f8130a5b8eb0d5beeb5d222</guid></item><item><title>WikiPage SqlErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlErrorLogProvider/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -41,15 +41,14 @@
 The following example shows the name of the `&lt;connectionStrings&gt;` item being specified, without the application name.
 
     :::c#
-    var provider = new SqlErrorLogProvider(connectionString: @"AppDb");
-##
+    var provider = new SqlErrorLogProvider(connectionString: @"Logs");
+##
 The following example shows the connection string being specified, without the application name.
 
     :::c#
     var provider = new SqlErrorLogProvider(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 SqlErrorLogProvider("/", @"AppDb");
-#
+    var provider = new SqlErrorLogProvider("/", @"Logs");
&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:41 -0000</pubDate><guid>https://sourceforge.netfa1d50e2617c280e297d1b7f13d58d5cef696535</guid></item><item><title>WikiPage SqlErrorLogProvider modified by Steven Bey</title><link>https://sourceforge.net/p/elfar/wiki/SqlErrorLogProvider/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -41,15 +41,15 @@
 The following example shows the name of the `&lt;connectionStrings&gt;` item being specified, without the application name.
 
     :::c#
-    var provider = new SqlErrorLogProvider(connectionString: @"ErrorLogging");
-##
+    var provider = new SqlErrorLogProvider(connectionString: @"AppDb");
+##
 The following example shows the connection string being specified, without the application name.
 
     :::c#
     var provider = new SqlErrorLogProvider(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 SqlErrorLogProvider("/", @"ErrorLogging");
+    var provider = new SqlErrorLogProvider("/", @"AppDb");
 #
&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:20:11 -0000</pubDate><guid>https://sourceforge.net6d243e9d068e86090646f193db50523219a0df89</guid></item></channel></rss>