DataConnector
キャッシング
ADO.NET provider for CSV > キャッシング

Caching data offers several advantages that can improve overall process performance, including reduced API requests and faster data access.

The ADO.NET provider features an easy-to-use caching procedure, which can also be shared by multiple connections. This article is going to demonstrate the two types of caches that are currently supported:

To enable the caching feature, necessary connection properties are available, e.g.:

Internal caching

The following code demonstrates how to enable caching for a table by setting the UseCache property to True (by default, it is set to False). The cached data is stored in the file specified by the CacheLocation property in the connection string. For more information on Incremental Caching, refer to this topic.

C#
コードのコピー
static void LocalCache() 
{
    string csvConnectionString = $"Uri='sampleCSV.csv';Use Pool= false; Use Cache = true; 
               Cache Location = 'C:/Temp/Cache.db'";

    Console.WriteLine("Query all Accounts...");

    using (var con = new C1CSVConnection(csvConnectionString))
    {
       con.Open();
       var table = con.GetSchema("columns", new string[] { "sampleCSV" });
       ShowDataTable(table);
       var cmd = con.CreateCommand();
       cmd.CommandText = "Select * From sampleCSV";
       var reader = cmd.ExecuteReader();
    }
}

static void ShowDataTable(DataTable table, int length = 25)
{
    foreach (DataColumn col in table.Columns)
    {
        Console.Write("{0,-" + length + "}", col.ColumnName);
    }
    Console.WriteLine();

    foreach (DataRow row in table.Rows)
    {
        foreach (DataColumn col in table.Columns)
        {
            if (col.DataType.Equals(typeof(DateTime)))
                Console.Write("{0,-" + length + ":d}", row[col]);
            else if (col.DataType.Equals(typeof(decimal)))
                Console.Write("{0,-" + length + ":C}", row[col]);
            else
                Console.Write("{0,-" + length + "}", row[col]);
        }
        Console.WriteLine();
    }
}       

External Caching

The ADO.NET provider for CSV supports external caching, allowing users to store cached data in a separate database. This external database serves as a constant repository and can be accessed by multiple connection objects simultaneously. It includes all tables exposed by the CSV provider and offers configuration options specific to the cache provider.

To utilize external caching, the provider supports a specified cache, such as SQL Server. You can specify the connection string using the UseCache, CacheProvider, and CacheConnection keys to enable external caching.

Note: With SQL Server, Cache Provider = ‘Microsoft.Data.SqlClient’ is mandatory so you must create your own database as our cache doesn’t create new Database.

The following code example implements external caching, by setting Use Cache to True, and using 'Microsoft.Data.SqlClient' as the cache provider.

C#
コードのコピー
//明示的な MS SQL キャッシュ構成。
static void ExternalCache() 
{
    string csvConnectionString = $"Uri='sampleCSV.csv';Use Pool= false; Use Cache = true;
           Cache provider='Microsoft.Data.SqlClient'; Cache connection='Server= yourserverid;
           Database= databasename; User Id= yourId; Password= yourpassword'";

   Console.WriteLine("Query all Accounts...");
   
   using (var con = new C1CSVConnection(csvConnectionString))
   {
        con.Open();
        var table = con.GetSchema("columns", new string[] { "sampleCSV" });
        ShowDataTable(table);

        var cmd = con.CreateCommand();
        cmd.CommandText = "Select * From sampleCSV";
        var reader = cmd.ExecuteReader();
    }
}

static void ShowDataTable(DataTable table, int length = 25)
{
    foreach (DataColumn col in table.Columns)
    {
        Console.Write("{0,-" + length + "}", col.ColumnName);
    }
    Console.WriteLine();

    foreach (DataRow row in table.Rows)
    {
        foreach (DataColumn col in table.Columns)
        {
            if (col.DataType.Equals(typeof(DateTime)))
                Console.Write("{0,-" + length + ":d}", row[col]);
            else if (col.DataType.Equals(typeof(decimal)))
                Console.Write("{0,-" + length + ":C}", row[col]);
            else
                Console.Write("{0,-" + length + "}", row[col]);
        }
        Console.WriteLine();
    }
}