实现ORACLE和SQL Server连接

实现ORACLE和SQL Server连接

 首先是添加ORACLE和SQL Server的引用(reference),ORACLE用的是它自带的类库

实现ORACLE和SQL Server连接
Imports
 System.Data.SqlClient
实现ORACLE和SQL Server连接

Imports
 Oracle.DataAccess.Client

 

在app.config里面设好connection string,具体如下:

实现ORACLE和SQL Server连接
 
<
appSettings 
>

实现ORACLE和SQL Server连接    

<
add key 
=

SQLServerConnectionString

 value
=

Data Source=MAPPA03C;Initial Catalog=LVSS;Integrated Security=True

/>

实现ORACLE和SQL Server连接    

<
add key 
=

OracleConnectionString

 value 
=

DATA SOURCE=lvnet;PASSWORD=lvss;PERSIST SECURITY INFO=False;USER ID=LVSS

  
/>

实现ORACLE和SQL Server连接  

</
appSettings
>



 

然后便是在获得SQL Server和Oracle连接.

实现ORACLE和SQL Server连接
    

——————————————————————–

实现ORACLE和SQL Server连接

    

Function:        GetSQLServerConn()

实现ORACLE和SQL Server连接

    

Description:  Implement the connection to SQL server database with the connection string in app.config

实现ORACLE和SQL Server连接

    

Input:                

实现ORACLE和SQL Server连接

    

Remark:                  

实现ORACLE和SQL Server连接

    

——————————————————————–

ExpandedBlockStart.gifContractedBlock.gif

    
Public
 
Shared
 
Function GetSQLServerConn()
Function GetSQLServerConn() As SqlConnection
实现ORACLE和SQL Server连接        
Dim conn As New SqlConnection(System.Configuration.ConfigurationManager.AppSettings(SQLServerConnectionString))
实现ORACLE和SQL Server连接        conn.Open()
实现ORACLE和SQL Server连接        
Return conn
实现ORACLE和SQL Server连接
实现ORACLE和SQL Server连接    
End Function


实现ORACLE和SQL Server连接
实现ORACLE和SQL Server连接
实现ORACLE和SQL Server连接    


——————————————————————–

实现ORACLE和SQL Server连接

    

Function:        GetOracleConn()

实现ORACLE和SQL Server连接

    

Description:  Implement the connection to oracle database with the connection string in app.config

实现ORACLE和SQL Server连接

    

Input:                

实现ORACLE和SQL Server连接

    

Remark:                  

实现ORACLE和SQL Server连接

    

——————————————————————–

ExpandedBlockStart.gifContractedBlock.gif

    
Public
 
Shared
 
Function GetOracleConn()
Function GetOracleConn() As OracleConnection
实现ORACLE和SQL Server连接        
Dim conn As New OracleConnection(System.Configuration.ConfigurationManager.AppSettings(OracleConnectionString))
实现ORACLE和SQL Server连接        conn.Open()
实现ORACLE和SQL Server连接        
Return conn
实现ORACLE和SQL Server连接    
End Function

转载于:https://www.cnblogs.com/iswszheng/archive/2009/04/23/1441954.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/110921.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)
blank

相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号