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

C#编程

开发平台:

Others

  1. using System;
  2. using System.Data;
  3. using System.Data.SqlClient;
  4. public class SimpleDataSetSQL
  5. {
  6. public static void Main(string[] args)
  7. {
  8. string         source = Login.Connection ;
  9. string         select = "SELECT ContactName,CompanyName FROM Customers" ;
  10. using ( SqlConnection  conn = new SqlConnection ( source ) )
  11. {
  12. SqlDataAdapter da = new SqlDataAdapter ( select , conn ) ;
  13. DataSet        ds = new DataSet ( ) ;
  14.     
  15. da.Fill ( ds , "Customers" ) ;
  16. foreach ( DataRow row in ds.Tables["Customers"].Rows )
  17. Console.WriteLine ( "'{0}' from {1}" , 
  18. row[0] ,
  19. row[1] ) ;
  20. conn.Close ( ) ;
  21. }
  22. }
  23. }