Support forum

Advanced Search

— Forum Scope —




— Match —





— Forum Options —





Minimum search word length is 3 characters - maximum search word length is 84 characters

sp_TopicIcon
Scripting Connector - Frequency of execute
sp_NewPost Add Reply sp_NewTopic Add Topic
March 25, 2011
3:21 pm
N.Hitchins
Guest
Guests

Henk,

Think your spot on about the connection pooling...doing a runnning test at the moment to see how long it takes for the db server to flush any open connections.
And yes your correct in that the number of connections allowed is licensed based and at the moment it's only allowing 1 connection. however without checking the connection is already open and just re-opening a new connection it would max out the number of licensed connections anyway....but atleast think i'm getting somewhere now. and yeah think i will implement an script connector to handle all incoming messages, but would still prefer the 'easy' approach of using your SQL connector for outgoing messages as these require no pre-processing.

Will let you know how I get on, but if you have any more thoughts, specially about whether the rollback error would potentially be fatal and stop further reconnects, please let me know.

Thanks,

Nick

March 25, 2011
3:06 pm
Henk Helmantel
Guest
Guests

Hi Nick,

Interesting, this is exactly how the SQL Connector opens a new database connection for every transaction (Except that it is implemented with the "using" clause. Apparently the ODBC driver treats opening the database connection from the SQL Connector and from the Scripting Connector differently. This also indicates that the database probably only supports one connection at the same time.

Regards, Henk

March 25, 2011
2:42 pm
N.Hitchins
Guest
Guests

Thanks Henk,

I actually implemented something similar in the mean time and was trying to implement a database connection and found something interesting using:

OdbcConnection Conn = new System.Data.Odbc.OdbcConnection("DSN=ClearSCADA;LOCATION=MAIN;UID=xxxx;PWD=xxxx;LOCALTIME=False;");
Conn.Open();

That actually revives the SQL Connector...bizzare. although for some reason the SQL Connector then appears failed for about 5-10sec after the timer next executes the above (probably because now the connection really is already open). Thinking that I might be able to put some sort of check in prior to trying to open the connection again.

March 25, 2011
1:38 pm
Henk Helmantel
Guest
Guests

Hi Nick,

You can use scheduled events in a script with the Timer object. The code snippet below shows how to use the timer. It is important to disable the timer when the Scripting Connector is stopped, the (old) script stays in memory and the event will still fire when it is not needed any more.

This will not solve your problem with the database connection since there is no way from a script to influence the SQL Connector.

private System.Timers.Timer myTimer = null;

public void OnLoad(IScriptHost host)
{
this.host = host;
// Create a new Timer object that calls OnTimedEvent
myTimer = new System.Timers.Timer(10000);
myTimer.Elapsed += new System.Timers.ElapsedEventHandler(OnTimedEvent);
myTimer.Enabled = true;
}

public void OnUnload()
{
// Important! Disable the timer before unloading the Scripting Connector
myTimer.Enabled = false;
myTimer = null;
}
private void OnTimedEvent(object source, System.Timers.ElapsedEventArgs e)
{
// Show the timer event in the Event Log
PostEventLog("OnTimedEvent called", "", EventLog.Information);
}

Regards, Henk

March 25, 2011
9:12 am
N.Hitchins
Guest
Guests

I'm also thinking of using the scripting connector for sending certain messages after other criteria is met...ie. file exists, etc. I can see in the c# skeleton script that there is an onload event, but the other event handlers are just for messages received. What would be the best way to run a scheduled operation in this code? ie. Add a timer to the onload function which calls my schedule function?

I'm thinking this may also solve my database reconnection issue (as documented in last post). ie. I could possibly put some odbc connection code in there that checks if the connection is alive, else tries to reconnect, etc. Don't suppose you have some example c# code handy?

Forum Timezone: Europe/Amsterdam

Most Users Ever Online: 529

Currently Online:
5 Guest(s)

Currently Browsing this Page:
1 Guest(s)

Top Posters:

Member Stats:

Guest Posters: 672

Members: 0

Moderators: 0

Admins: 1

Forum Stats:

Groups: 2

Forums: 3

Topics: 1141

Posts: 3899

Newest Members:

, Henk Helmantel

Administrators: Henk Helmantel: 1488