处变不惊,处忧不虑,不争一年的兴衰,但看十年的功过。笑中千关过,愁内百事哀,挣胜是祸,繁华似梦,平淡是福。

  IT博客 :: 首页 :: 联系 :: 聚合  :: 管理
  65 Posts :: 1 Stories :: 24 Comments :: 0 Trackbacks

 

using System;
using System.Collections;
using System.Collections.Generic;
using System.Configuration;
using System.Data;          //DataTable
using System.Data.SqlClient;//SqlConnection
using System.IO;
using System.Text;

namespace ConsoleApplication1
{
    
class Program
    
{
        
static void Main(string[] args)
        
{
            
try
            
{
                SqlConnection conn 
= new SqlConnection(ConfigurationSettings.AppSettings["con"]);
                conn.Open();
                SqlCommand comm 
= new SqlCommand("select * from tb1", conn);

                DataTable dt 
= new DataTable();
                SqlDataAdapter ada 
= new SqlDataAdapter(comm);
                ada.Fill(dt);
                
foreach (DataRow row in dt.Rows)
                
{
                    comm.CommandText 
= "update tb set name=name+'" + row["name"].ToString() + "' where id=" + row["id"].ToString();
                    comm.ExecuteNonQuery();
                }

            }

            
catch (Exception ex)
            
{
                
throw ex;
            }


            Hashtable ht 
= new Hashtable(200);
            ht.Add(
"dd""a");
            ht.Add(
"bb""b");

            Console.WriteLine(ht[
"dd"]);
            Console.ReadKey();
        }

    }

}


只有注册用户登录后才能发表评论。