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

C#编程

开发平台:

Others

  1. using System;
  2. using System.Data;
  3. using System.Data.SqlClient;
  4. public class XSD_DataSet
  5. {
  6. public static void Main ( )
  7. {
  8. string        source = Login.Connection ;
  9. string        select = "SELECT * FROM Products" ;
  10. using ( SqlConnection  conn = new SqlConnection ( source ) )
  11. {
  12. SqlDataAdapter da = new SqlDataAdapter ( select , conn ) ;
  13. Products      ds = new Products ( ) ;
  14. da.Fill ( ds , "Product" ) ;
  15. foreach ( Products.ProductRow row in ds.Product )
  16. Console.WriteLine ( "'{0}' from {1}" , 
  17. row.ProductID ,
  18. row.ProductName ) ;
  19. conn.Close ( ) ;
  20. }
  21. }
  22. }