本文整理汇总了C#中FreeSWITCH.Native.SWIGTYPE_p_sqlite3_stmt类的典型用法代码示例。如果您正苦于以下问题:C# SWIGTYPE_p_sqlite3_stmt类的具体用法?C# SWIGTYPE_p_sqlite3_stmt怎么用?C# SWIGTYPE_p_sqlite3_stmt使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SWIGTYPE_p_sqlite3_stmt类属于FreeSWITCH.Native命名空间,在下文中一共展示了SWIGTYPE_p_sqlite3_stmt类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: switch_core_db_finalize
public static int switch_core_db_finalize(SWIGTYPE_p_sqlite3_stmt pStmt)
{
int ret = freeswitchPINVOKE.switch_core_db_finalize(SWIGTYPE_p_sqlite3_stmt.getCPtr(pStmt));
return ret;
}
示例2: switch_core_db_step
public static int switch_core_db_step(SWIGTYPE_p_sqlite3_stmt stmt)
{
int ret = freeswitchPINVOKE.switch_core_db_step(SWIGTYPE_p_sqlite3_stmt.getCPtr(stmt));
return ret;
}
示例3: switch_core_db_column_text
public static SWIGTYPE_p_unsigned_char switch_core_db_column_text(SWIGTYPE_p_sqlite3_stmt stmt, int iCol)
{
IntPtr cPtr = freeswitchPINVOKE.switch_core_db_column_text(SWIGTYPE_p_sqlite3_stmt.getCPtr(stmt), iCol);
SWIGTYPE_p_unsigned_char ret = (cPtr == IntPtr.Zero) ? null : new SWIGTYPE_p_unsigned_char(cPtr, false);
return ret;
}
示例4: switch_core_db_column_name
public static string switch_core_db_column_name(SWIGTYPE_p_sqlite3_stmt stmt, int N)
{
string ret = freeswitchPINVOKE.switch_core_db_column_name(SWIGTYPE_p_sqlite3_stmt.getCPtr(stmt), N);
return ret;
}
示例5: switch_core_db_bind_text
public static int switch_core_db_bind_text(SWIGTYPE_p_sqlite3_stmt pStmt, int i, string zData, int nData, SWIGTYPE_p_f_p_void__void xDel)
{
int ret = freeswitchPINVOKE.switch_core_db_bind_text(SWIGTYPE_p_sqlite3_stmt.getCPtr(pStmt), i, zData, nData, SWIGTYPE_p_f_p_void__void.getCPtr(xDel));
return ret;
}
示例6: switch_core_db_bind_int64
public static int switch_core_db_bind_int64(SWIGTYPE_p_sqlite3_stmt pStmt, int i, long iValue)
{
int ret = freeswitchPINVOKE.switch_core_db_bind_int64(SWIGTYPE_p_sqlite3_stmt.getCPtr(pStmt), i, iValue);
return ret;
}
示例7: getCPtr
internal static HandleRef getCPtr(SWIGTYPE_p_sqlite3_stmt obj)
{
return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
}