扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:SONYFAN 来源:论坛 2007年11月13日
关键字:
//创建一个通道实例,port为指定的网络端口号 TcpChannel MyChannel= new TcpChannel (Int32.Parse(port)); //注册通道 ChannelServices.RegisterChannel(MyChannel); //发布该服务器端激活对象 RemotingConfiguration.RegisterWellKnownServiceType( typeof ( DbServer ), "STORE", WellKnownObjectMode.Singleton); 远程对象的获取: //根据IP地址和端口号获取相应的远程对象 try {myDbServer=(DbServer)Activator.GetObject(typeof(DbServer),"tcp://"+ip+":"+p+"/STORE"); } //捕捉异常 catch( NullReferenceException nullExp ) {MessageBox.Show( "指定的url地址不可到达 " + nullExp.Message );} catch( RemotingException remExp ) {MessageBox.Show( "指定获得的对象定义不对" + remExp.Message );} |
//建立数据库的连接 string SqlConn = "Initial Catalog=Store;Data Source=Localhost;Userid=sa;Password=;"; SqlConnection Conn= new SqlConnection (SqlConn); Conn.Open();//打开数据库 //将数据源中的数据导入到数据集对象 try{ DataSet ds = new DataSet(); DataTable dt=new DataTable("Result"); SqlDataAdapter adapter=new SqlDataAdapter(); SqlCommand mySqlDataSetCmd =new SqlCommand (CmdString,Conn);//CmdString为要执行的命令 adapter.SelectCommand= mySqlDataSetCmd; adapter.Fill(dt); ds.Tables.Add(dt); } finally { Conn.Close();//关闭数据库的连接} |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者