本文整理汇总了C#中IDbContext.Close方法的典型用法代码示例。如果您正苦于以下问题:C# IDbContext.Close方法的具体用法?C# IDbContext.Close怎么用?C# IDbContext.Close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IDbContext
的用法示例。
在下文中一共展示了IDbContext.Close方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ExecuteNonQuery
public static int ExecuteNonQuery(IDbContext ctx)
{
bool isNullTransaction=false;
// Selalu pakai transaction untuk mencegah record ditable lain di update bila ada proses yg gagal
if (ctx.Transaction == null)
{
isNullTransaction = true;
ctx.Command.Transaction = ctx.Command.Connection.BeginTransaction();
}
int result;
// Untuk keperluan error handling & loging
try
{
//Error bila untuk app windows, jadi diabaikan saja
if (HttpContext.Current != null)
{
HttpContext.Current.Session["_LastSqlException"] = null;
HttpContext.Current.Session["_LastSqlCommand"] = ctx.Command;
}
}
catch (Exception) { }
try
{
result = ctx.Command.ExecuteNonQuery();
if (isNullTransaction)
ctx.Command.Transaction.Commit();
}
catch (SqlException ex)
{
try
{
//Error bila untuk app windows, jadi diabaikan saja
if (HttpContext.Current != null)
{
HttpContext.Current.Session["_LastSqlException"] = ex;
}
}
catch (Exception) { }
if (isNullTransaction)
ctx.Command.Transaction.Rollback();
throw new Exception(ex.Message, ex);
}
catch (Exception ex)
{
if (isNullTransaction)
ctx.Command.Transaction.Rollback();
throw new Exception(ex.Message, ex);
}
finally
{
if (isNullTransaction)
ctx.Command.Transaction = null;
ctx.Close();
}
return result;
}
示例2: ExecuteScalar
public static object ExecuteScalar(IDbContext ctx)
{
// Untuk keperluan error handling & loging
try
{
//Error bila untuk app windows, jadi diabaikan saja
HttpContext.Current.Session["_LastSqlException"] = null;
HttpContext.Current.Session["_LastSqlCommand"] = ctx.Command;
}
catch (Exception) { }
object result;
try
{
result = ctx.Command.ExecuteScalar();
}
catch (SqlException ex)
{
try
{
//Error bila untuk app windows, jadi diabaikan saja
HttpContext.Current.Session["_LastSqlException"] = ex;
}
catch (Exception) { }
throw new Exception(ex.Message, ex);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
finally
{
ctx.Close();
}
return result;
}
示例3: GetDataSet
public static DataSet GetDataSet(IDbContext ctx)
{
DataSet ds = new DataSet();
IDataAdapter da = ctx.DataAdapter;
// Untuk keperluan error handling & loging
try
{
//Error bila untuk app windows, jadi diabaikan saja
HttpContext.Current.Session["_LastSqlException"] = null;
HttpContext.Current.Session["_LastSqlCommand"] = ctx.Command;
}
catch (Exception) { }
try
{
da.Fill(ds);
}
catch (SqlException ex)
{
try
{
//Error bila untuk app windows, jadi diabaikan saja
HttpContext.Current.Session["_LastSqlException"] = ex;
}
catch (Exception) { }
throw new Exception(ex.Message, ex);
}
catch (Exception ex)
{
throw new Exception(ex.Message, ex);
}
finally
{
ctx.Close();
}
return ds;
}