Differences From:
File
src/db.c
part of check-in
[e00384d26d]
- Moved the core logic of both "rebuild_database" and "create_repository_cmd" into their own functions, for sharing with "reconstruct_cmd".
by
aku on
2007-08-29 02:42:24.
[view]
To:
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]
@@ -258,9 +258,9 @@
}
const char *db_column_text(Stmt *pStmt, int N){
return (char*)sqlite3_column_text(pStmt->pStmt, N);
}
-const char *db_column_malloc(Stmt *pStmt, int N){
+char *db_column_malloc(Stmt *pStmt, int N){
return mprintf("%s", db_column_text(pStmt, N));
}
void db_column_blob(Stmt *pStmt, int N, Blob *pBlob){
blob_append(pBlob, sqlite3_column_blob(pStmt->pStmt, N),