dreader2.cs
上传用户:yiyuerguo
上传日期:2014-09-27
资源大小:3781k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Data;
  3. using System.Data.OleDb;
  4. namespace DataReader2App
  5. {
  6. /// <summary>
  7. /// Class1 的摘要说明。
  8. /// </summary>
  9. class DataReader2
  10. {
  11. /// <summary>
  12. /// 应用程序的主入口点。
  13. /// </summary>
  14. [STAThread]
  15. static void Main(string[] args)
  16. {
  17. OleDbConnection connection = new OleDbConnection(@"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=SimpleBank.mdb");
  18. connection.Open();
  19. OleDbCommand command = connection.CreateCommand();
  20. command.CommandText = "SELECT AccountID, Owner from Account";
  21. OleDbDataReader reader = command.ExecuteReader();
  22. while(reader.Read())
  23. {
  24. Console.WriteLine("t{0}t{1}",reader["AccountID"],reader["Owner"]);
  25. }
  26. reader.Close();
  27. connection.Close();
  28. Console.ReadLine();
  29. }
  30. }
  31. }