标签:
{ OdbcConnection cn; OdbcCommand cmd; string MyString; MyString="Select * from Customers"; cn= new OdbcConnection("dsn=myDSN;UID=myUid;PWD=myPwd;"); cmd=new OdbcCommand(MyString,cn); cn.Open(); MessageBox.Show("Connected"); cn.Close(); }
标签:
原文地址:http://www.cnblogs.com/haoliansheng/p/5607834.html