voidPage_Load(objectsender,System.EventArgse) { //连接字符串 stringORACLE_ConnStr="DataSource=Oracle8i;IntegratedSecurity=yes"; //创建OracleConnection对象 OracleConnectionoConnection=newOracleConnection(ORACLE_ConnStr); try { oConnection.Open(); myLabel.Text="连接到Oracle数据库"; } catch(Exceptionex) { myLabel.Text=ex.ToString(); } finally { oConnection.Close(); } }
2024/3/22 12:23:55
3.42MB
C#
1