DataReader.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Data.OleDb;
  3. public class DataReader
  4. {
  5.   public static int Main(string[] args)
  6.   {
  7.     string        source = "Provider=SQLOLEDB;" + Login.Connection ;
  8.     string        select = "SELECT ContactName,CompanyName FROM Customers" ;
  9.     OleDbConnection conn = new OleDbConnection ( source ) ;
  10.     try
  11.     {
  12.       conn.Open ( ) ;
  13.       OleDbCommand    cmd = new OleDbCommand ( select , conn ) ;
  14.       OleDbDataReader aReader = cmd.ExecuteReader ( ) ;
  15.       while ( aReader.Read ( ) )
  16.         Console.WriteLine ( "'{0}' from {1}" , aReader.GetString(0) , aReader.GetString ( 1 ) ) ;
  17.       aReader.Close ( ) ;
  18.       conn.Close ( ) ;
  19.     }
  20.     catch ( Exception e )
  21.     {
  22.       Console.WriteLine ( e ) ;
  23.       Console.WriteLine ( ) ;
  24.       Console.WriteLine ( "Chances are your database does not have a user" ) ;
  25.       Console.WriteLine ( "called QSUser, or you do not have the NetSDK database installed." ) ;
  26.     }
  27.     return 0;
  28.   }
  29. }