Metastorm.Runtime.Core.QueryParameter[] oParams = new Metastorm.Runtime.Core.QueryParameter[1];
oParams[0] = Mstm.SQLArg("@MyParam","some text");
// in here I need to define myConnInfo as
// Metastorm.Runtime.Contracts.Mbo.MboConnectionInfo
// How do I do this ?
Metastorm.Runtime.Contracts.IDataContainer oResults = Mstm.SelectSql(myConnInfo, "EXEC dbo.usp_NewTestBasicTableRecord2 @RowDesc, @RelatedID", oParams);
if (oResults.Integer != null)
Local.intNewSYSID = oResults.Integer;
You help will be much appreciated
Thanks
Barrie