本文整理汇总了C#中FreeSWITCH.Native.SWIGTYPE_p_sqlite3类的典型用法代码示例。如果您正苦于以下问题:C# SWIGTYPE_p_sqlite3类的具体用法?C# SWIGTYPE_p_sqlite3怎么用?C# SWIGTYPE_p_sqlite3使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SWIGTYPE_p_sqlite3类属于FreeSWITCH.Native命名空间,在下文中一共展示了SWIGTYPE_p_sqlite3类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: switch_core_db_test_reactive
public static void switch_core_db_test_reactive(SWIGTYPE_p_sqlite3 db, string test_sql, string drop_sql, string reactive_sql)
{
freeswitchPINVOKE.switch_core_db_test_reactive(SWIGTYPE_p_sqlite3.getCPtr(db), test_sql, drop_sql, reactive_sql);
}
示例2: switch_core_db_persistant_execute_trans
public static switch_status_t switch_core_db_persistant_execute_trans(SWIGTYPE_p_sqlite3 db, string sql, uint retries)
{
switch_status_t ret = (switch_status_t)freeswitchPINVOKE.switch_core_db_persistant_execute_trans(SWIGTYPE_p_sqlite3.getCPtr(db), sql, retries);
return ret;
}
示例3: switch_core_db_prepare
public static int switch_core_db_prepare(SWIGTYPE_p_sqlite3 db, string zSql, int nBytes, SWIGTYPE_p_p_sqlite3_stmt ppStmt, ref string pzTail)
{
int ret = freeswitchPINVOKE.switch_core_db_prepare(SWIGTYPE_p_sqlite3.getCPtr(db), zSql, nBytes, SWIGTYPE_p_p_sqlite3_stmt.getCPtr(ppStmt), ref pzTail);
return ret;
}
示例4: switch_core_db_get_table
public static int switch_core_db_get_table(SWIGTYPE_p_sqlite3 db, string sql, SWIGTYPE_p_p_p_char resultp, SWIGTYPE_p_int nrow, SWIGTYPE_p_int ncolumn, ref string errmsg)
{
int ret = freeswitchPINVOKE.switch_core_db_get_table(SWIGTYPE_p_sqlite3.getCPtr(db), sql, SWIGTYPE_p_p_p_char.getCPtr(resultp), SWIGTYPE_p_int.getCPtr(nrow), SWIGTYPE_p_int.getCPtr(ncolumn), ref errmsg);
return ret;
}
示例5: switch_core_db_last_insert_rowid
public static long switch_core_db_last_insert_rowid(SWIGTYPE_p_sqlite3 db)
{
long ret = freeswitchPINVOKE.switch_core_db_last_insert_rowid(SWIGTYPE_p_sqlite3.getCPtr(db));
return ret;
}
示例6: switch_core_db_exec
public static int switch_core_db_exec(SWIGTYPE_p_sqlite3 db, string sql, SWIGTYPE_p_f_p_void_int_p_p_char_p_p_char__int callback, SWIGTYPE_p_void data, ref string errmsg)
{
int ret = freeswitchPINVOKE.switch_core_db_exec(SWIGTYPE_p_sqlite3.getCPtr(db), sql, SWIGTYPE_p_f_p_void_int_p_p_char_p_p_char__int.getCPtr(callback), SWIGTYPE_p_void.getCPtr(data), ref errmsg);
return ret;
}
示例7: switch_core_db_errmsg
public static string switch_core_db_errmsg(SWIGTYPE_p_sqlite3 db)
{
string ret = freeswitchPINVOKE.switch_core_db_errmsg(SWIGTYPE_p_sqlite3.getCPtr(db));
return ret;
}
示例8: switch_core_db_close
public static int switch_core_db_close(SWIGTYPE_p_sqlite3 db)
{
int ret = freeswitchPINVOKE.switch_core_db_close(SWIGTYPE_p_sqlite3.getCPtr(db));
return ret;
}
示例9: getCPtr
internal static HandleRef getCPtr(SWIGTYPE_p_sqlite3 obj)
{
return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
}
示例10: switch_core_db_load_extension
public static int switch_core_db_load_extension(SWIGTYPE_p_sqlite3 db, string extension) {
int ret = freeswitchPINVOKE.switch_core_db_load_extension(SWIGTYPE_p_sqlite3.getCPtr(db), extension);
return ret;
}