WINCC利用VBS读取SQL
OptionExplicitFunctionactionDimA1DimA2DimstrSQLDimobjCommandstrConnectionString="Prov...
Option Explicit
Function action
Dim A1
Dim A2
Dim strSQL
Dim objCommand
strConnectionString = "Provider=MSDASQL;SERVER=JIE-PC\WINCC;DSN=ceshi;UID=;PWD=;database=new"
A1 = HMIRuntime.Tags("a").Read
A2= HMIRuntime.Tags("b").Read
strSQL = "INSERT INTO test (test,test2) VALUES ("& A1 & ","& A2 &");"
HMIRuntime.Trace "strSQL"
Set objConnection = CreateObject("ADODB.Connection")
objConnection.ConnectionString = strConnectionString
objConnection.Open
Set objCommand = CreateObject("ADODB.Command")
With objCommand
.ActiveConnection = objConnection
.CommandText = strSQL
End With
objCommand.Execute
Set objCommand = Nothing
objConnection.Close
Set objConnection = Nothing
End Function
已经配置ODBC,测试可以连接,可是WINCC无法往SQL中写入值,哪里出错了?
谢谢了
哪位帮忙看下,谢谢了。 展开
Function action
Dim A1
Dim A2
Dim strSQL
Dim objCommand
strConnectionString = "Provider=MSDASQL;SERVER=JIE-PC\WINCC;DSN=ceshi;UID=;PWD=;database=new"
A1 = HMIRuntime.Tags("a").Read
A2= HMIRuntime.Tags("b").Read
strSQL = "INSERT INTO test (test,test2) VALUES ("& A1 & ","& A2 &");"
HMIRuntime.Trace "strSQL"
Set objConnection = CreateObject("ADODB.Connection")
objConnection.ConnectionString = strConnectionString
objConnection.Open
Set objCommand = CreateObject("ADODB.Command")
With objCommand
.ActiveConnection = objConnection
.CommandText = strSQL
End With
objCommand.Execute
Set objCommand = Nothing
objConnection.Close
Set objConnection = Nothing
End Function
已经配置ODBC,测试可以连接,可是WINCC无法往SQL中写入值,哪里出错了?
谢谢了
哪位帮忙看下,谢谢了。 展开
展开全部
1、wincc的数据库是加密的,不能直接加到wincc的表中。
2、你在中间插入msgbox函数,显示不同的值,测试看执行到了哪里停止下来的。
2、你在中间插入msgbox函数,显示不同的值,测试看执行到了哪里停止下来的。
追问
不是WINCC的表,自己建的数据库和表
msgbox函数?WINCC中可以调试脚本,好吧,新手。。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
WIN7对VBS加了限制,有一部分CreateObject参数被禁止了。你用的是哪个版本的wincc & windows
追问
好吧,WIN7 32位, WINCC7.0.
那么您的意思是只能XP?
XP试了还是不行,不知道哪里的问题。。。。。。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询