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

C#编程

开发平台:

Others

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