本文整理匯總了C#中ADODB.Recordset.Update方法的典型用法代碼示例。如果您正苦於以下問題:C# ADODB.Recordset.Update方法的具體用法?C# ADODB.Recordset.Update怎麽用?C# ADODB.Recordset.Update使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ADODB.Recordset
的用法示例。
在下文中一共展示了ADODB.Recordset.Update方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: UpdateEntity
protected void UpdateEntity(string Entity, string ID, string Field, string Value)
{
object oMissing = System.Reflection.Missing.Value;
//get the DataService to get a connection string to the database
Sage.Platform.Data.IDataService datasvc = Sage.Platform.Application.ApplicationContext.Current.Services.Get<Sage.Platform.Data.IDataService>();
ADODB.Connection objConn = new ADODB.Connection();
ADODB.Recordset objRS = new ADODB.Recordset();
string strSQL = "SELECT " + Field + " FROM " + Entity + " WHERE " +Entity + "ID = '" + ID + "'";
try
{
objConn.Open(datasvc.GetConnectionString(),null, null,0 );
objRS.CursorLocation = ADODB.CursorLocationEnum.adUseClient;
objRS.CursorType = ADODB.CursorTypeEnum.adOpenDynamic;
objRS.LockType = ADODB.LockTypeEnum.adLockOptimistic;
objRS.Open(strSQL, objConn, ADODB.CursorTypeEnum.adOpenDynamic, ADODB.LockTypeEnum.adLockOptimistic,-1);
if (!objRS.EOF)
{
//updating
try
{
objRS.Fields[Field].Value = Value;
}
catch (Exception ex)
{
}
}
objRS.Update(oMissing ,oMissing );
objRS.Close();
}
catch (Exception ex)
{
}
}