Diff
Not logged in

Differences From:

File src/db.c part of check-in [b2e55c0d4d] - Add the /wiki and /bwiki web pages. Currently renders content from the check-out as readonly. by drh on 2007-09-01 21:11:33. Also file src/db.c part of check-in [bbcb6326c9] - Pulled in the navbar and timeline changes. by aku on 2007-09-17 00:58:51. [view]

To:

File src/db.c part of check-in [2bc0e2c565] - Work toward adding a tagging system. Code compiles but is incomplete and probably does not work. by drh on 2007-09-21 02:41:53. [view]

@@ -164,8 +164,11 @@
   return sqlite3_bind_int(pStmt->pStmt, paramIdx(pStmt, zParamName), iValue);
 }
 int db_bind_int64(Stmt *pStmt, const char *zParamName, i64 iValue){
   return sqlite3_bind_int64(pStmt->pStmt, paramIdx(pStmt, zParamName), iValue);
+}
+int db_bind_double(Stmt *pStmt, const char *zParamName, double rValue){
+  return sqlite3_bind_double(pStmt->pStmt, paramIdx(pStmt, zParamName), rValue);
 }
 int db_bind_text(Stmt *pStmt, const char *zParamName, const char *zValue){
   return sqlite3_bind_text(pStmt->pStmt, paramIdx(pStmt, zParamName), zValue,
                            -1, SQLITE_STATIC);