{}

Våra varumärken

Impact-Company-Logo-English Black-01-177x54

Välkommen till Schneider Electrics webbplats

Välkommen till vår webbplats.

Sök bland vanliga frågor (FAQ)

How to write to ClearSCADA DataTable from Excel using VBScript and ODBC

DISCLAIMER

The example below is intended to demonstrate one or more features or methods and is presented as a configuration example only. Schneider Electric assumes no liability for the use or application of this example or any portion thereof.


Sometimes it is helpful to be able to write to a ClearSCADA DataTable from an external tool.
As an example, the following code, written in VBScript inside an Excel spreadsheet, will add a row in a DataTable called "Populate", which contains two fields, one string and one long value, as long as the DSN and credentials are correct:

Sub test()

Set ado = CreateObject("ADODB.Connection")
ado.Open "DSN=ClearSCADA", "Eng", "password"
If ado.State = 1 Then
MsgBox "Connected"
End If

queryText = "insert into Populate (Comment, Num) values ('AnyStringAny', 100)"
ado.Execute queryText
ado.Close

Set ado = Nothing

MsgBox "Done"

End Sub

Schneider Electric Sverige

Utforska mer
Produktfamilj
Homeline Load CentersOutdoor Temperature Sensors STO200
Utforska mer
Produktfamilj
Homeline Load CentersOutdoor Temperature Sensors STO200