C# Samples
--------------------
1 C# Samples Purpose
2 How to Run C# Samples


1 C# Samples Purpose
---------------------------------

    Sample: <DBMaker>\Samples\C#\CsSample.cs

    Purpose:
        This sample demostrates how to access database with C#(via ADO.NET).

        1. Read ordinary data and BLOB data from database and fill dataset

        2. Manipulate data in dataset

        3. Update dataset to database

        4. Used ADO.NET components(Include OleDb Provider and Odbc provider):
           DataSet, DataAdapter, Command, Connection, CommandBuilder, etc.


2 How to Run C# Samples
---------------------------------
    Steps:
        1. Install .NET Framework v1.1 or later

        2. Compile CsSample.cs in command line:
           csc /t:winexe CsSample.cs

        3. Start database DBSAMPLE5

        4. Double click CsSample.exe

        NOTE: You can open CsProject\CsSample.sln in C#, build and run it.