温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

使用powershell连接oracle数据库(取值、更新)

发布时间:2020-04-14 04:30:14 来源:网络 阅读:1427 作者:CaptainCook 栏目:系统运维

在工作中我们常常需要使用powershell连接Oracle数据库。
但是在百度找到的代码都是很老的,而且还需要oracle数据库连接客户端。查找一番后发现Oracle官方早已经发布了对.net官方连接库,高效简单。
连接库地址:
https://www.oracle.com/technetwork/developer-tools/visual-studio/overview/index.html

我写的小小demo:
官方文档:
https://docs.oracle.com/cd/E11882_01/win.112/e23174/client.htm#ODPNT0008
用例:

 

$AssemblyFile = "Oracle.ManagedDataAccess.dll"
[Reflection.Assembly]::LoadFile($AssemblyFile)
$username = "xx" 
$password = "xx" 
$datasource = "192.168.xx.xx/dbname" 
$sql = "SELECT * from xxdb" 
$connectionnectionString = 'User Id=' + $username + ';Password=' + $password + ';Data Source=' + $datasource 
$connectionnection = New-Object Oracle.ManagedDataAccess.Client.OracleConnection($connectionnectionString) 
$connectionnection.open() 
$command=$connection.CreateCommand() 
$command.CommandText=$sql 
$da = New-Object Oracle.ManagedDataAccess.Client.OracleDataAdapter($command) 
$builder=New-Object Oracle.ManagedDataAccess.Client.OracleCommandBuilder($da) #用来更新数据库 
$ds = New-Object system.Data.DataSet [void]$da.fill($ds,"xxdb") 
foreach($row in $ds.Tables["xxdb"] ) 
{ 
 $row["xxFLAG"]="1" 
 $da.Update($ds,"xxdb") #更新数据库
 }
 $connection.close()
向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI