C#连接DB2数据库的方法和代码
下面的程序是同不Sql2022中的表与DB2中的表
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.Odbc;
using System.Data.SqlClient;
using System.Data;
namespace DB2Import
{
class Program
{
static void Main(string[] args)
{
OdbcConnection DB2Connection = new OdbcConnection(“Dsn=DataSourceName;uid=UserName;pwd=mismidas “);//创立DB2的数据源连接
//这里是用数据源连接的
//DataSourceName 数据源名称
//UserName 用户名
//pwd 用户口令
//OdbcCommand
SqlConnection conSql = new SqlConnection(“Data Source=oadatabase\\userdb2022;Initial
Catalog=GongChengGuanLi;Persist Security Info=True;User ID=sqlUserName;Password=SqlPassword“);//考试大提示: Sql2022的数据库连接
DB2Connection.Open();//翻开DB2的数据源连接
SqlDataAdapter ZDAdapter = new SqlDataAdapter(new SqlCommand(“Select * from SCD_GXDY_XGJL“, conSql));
SqlCommandBuilder myCommandBuilder = new SqlCommandBuilder(ZDAdapter);
DataSet ZDDataSet = new DataSet();
ZDAdapter.Fill(ZDDataSet, “SCD_GXDY_XGJL“);
for (int i = 0; i < ZDDataSet.Tables[“SCD_GXDY_XGJL “].Rows.Count; i++)
db2数据库sql语句{
Console.WriteLine(“importing “+i+“ .....“);
DataRow row = ZDDataSet.Tables[“SCD_GXDY_XGJL “].Rows[i];
int KHDM = 0;
try
{
KHDM = int.Parse(““ + row[“KHDM“]);
}
catch (Exception paresException)
{
KHDM = 0;
}
//KHDM
if (““ + row[“KHDM“] != ““
OdbcDataReader odbcReader= cmdSelect.ExecuteReader();
if (odbcReader.Read())//Examda提示: 从DB2中读取数据
{
row[“CNME“] = ““+odbcReader[“CNME“];
row[“CTYPE“] = ““ + odbcReader[“CTYPE“];
row[“CLOC“] = ““ + odbcReader[“CLOC“];
row[“CMDPFX“] = ““ + odbcReader[“CMDPFX“];
}
odbcReader.Close();
}
}
Console.WriteLine(“Updating ....“);
ZDAdapter.Update(ZDDataSet, “SCD_GXDY_XGJL“);
Console.WriteLine(“Commplete!“);
Console.WriteLine(“Press any Key to Exit!“);
Console.Read();
}
}
}
但可能有朋友要问了,DB2的数据源是怎么建立的,安装IBM DB2 RUN-Time Client。
然后运行“从属站架构辅助程式”来添加数据源.(剩下就是下一步了啊)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论