当前位置: 首页>>代码示例>>C#>>正文


C# SQLiteStatement.BindParameters方法代码示例

本文整理汇总了C#中System.Data.SQLite.SQLiteStatement.BindParameters方法的典型用法代码示例。如果您正苦于以下问题:C# SQLiteStatement.BindParameters方法的具体用法?C# SQLiteStatement.BindParameters怎么用?C# SQLiteStatement.BindParameters使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Data.SQLite.SQLiteStatement的用法示例。


在下文中一共展示了SQLiteStatement.BindParameters方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Reset

    internal override SQLiteErrorCode Reset(SQLiteStatement stmt)
    {
      SQLiteErrorCode n;

#if !SQLITE_STANDARD
      n = UnsafeNativeMethods.sqlite3_reset_interop(stmt._sqlite_stmt);
#else
      n = UnsafeNativeMethods.sqlite3_reset(stmt._sqlite_stmt);
#endif

      // If the schema changed, try and re-prepare it
      if (n == SQLiteErrorCode.Schema)
      {
        // Recreate a dummy statement
        string str;
        using (SQLiteStatement tmp = Prepare(null, stmt._sqlStatement, null, (uint)(stmt._command._commandTimeout * 1000), out str))
        {
          // Finalize the existing statement
          stmt._sqlite_stmt.Dispose();
          // Reassign a new statement pointer to the old statement and clear the temporary one
          stmt._sqlite_stmt = tmp._sqlite_stmt;
          tmp._sqlite_stmt = null;

          // Reapply parameters
          stmt.BindParameters();
        }
        return (SQLiteErrorCode)(-1); // Reset was OK, with schema change
      }
      else if (n == SQLiteErrorCode.Locked || n == SQLiteErrorCode.Busy)
        return n;

      if (n != SQLiteErrorCode.Ok)
        throw new SQLiteException(n, GetLastError());

      return SQLiteErrorCode.Ok; // We reset OK, no schema changes
    }
开发者ID:CuneytKukrer,项目名称:TestProject,代码行数:36,代码来源:SQLite3.cs

示例2: Reset

    internal override int Reset(SQLiteStatement stmt)
    {
      int n;

#if !SQLITE_STANDARD
      n = UnsafeNativeMethods.sqlite3_reset_interop(stmt._sqlite_stmt);
#else
      n = UnsafeNativeMethods.sqlite3_reset(stmt._sqlite_stmt);
#endif

      // If the schema changed, try and re-prepare it
      if (n == 17) // SQLITE_SCHEMA
      {
        // Recreate a dummy statement
        string str;
        using (SQLiteStatement tmp = Prepare(null, stmt._sqlStatement, null, (uint)(stmt._command._commandTimeout * 1000), out str))
        {
          // Finalize the existing statement
          stmt._sqlite_stmt.Dispose();
          // Reassign a new statement pointer to the old statement and clear the temporary one
          stmt._sqlite_stmt = tmp._sqlite_stmt;
          tmp._sqlite_stmt = null;

          // Reapply parameters
          stmt.BindParameters();
        }
        return -1; // Reset was OK, with schema change
      }
      else if (n == 6 || n == 5) // SQLITE_LOCKED || SQLITE_BUSY
        return n;

      if (n > 0)
        throw new SQLiteException(n, GetLastError());

      return 0; // We reset OK, no schema changes
    }
开发者ID:priceLiu,项目名称:Enterprise.Company,代码行数:36,代码来源:SQLite3.cs

示例3: Reset

        internal override int Reset(SQLiteStatement stmt)
        {
            int n;

              n = UnsafeNativeMethods.sqlite3_reset_interop(stmt._sqlite_stmt);

              // If the schema changed, try and re-prepare it
              if (n == 17) // SQLITE_SCHEMA
              {
            // Recreate a dummy statement
            string str;
            using (SQLiteStatement tmp = Prepare(stmt._sqlStatement, null, out str))
            {
              // Finalize the existing statement
              FinalizeStatement(stmt);

              // Reassign a new statement pointer to the old statement and clear the temporary one
              stmt._sqlite_stmt = tmp._sqlite_stmt;
              tmp._sqlite_stmt = IntPtr.Zero;

              // Reapply parameters
              stmt.BindParameters();
            }
            return -1; // Reset was OK, with schema change
              }
              else if (n == 6) // SQLITE_LOCKED
            return n;

              if (n > 0)
            throw new SQLiteException(n, SQLiteLastError());

              return 0; // We reset OK, no schema changes
        }
开发者ID:ronnyMakhuddin,项目名称:SharperNLP,代码行数:33,代码来源:SQLite3.cs


注:本文中的System.Data.SQLite.SQLiteStatement.BindParameters方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。