Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in speed.html. (CVS 1007) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d01e6fbdde314f2edfcd43fcda3dc8be |
User & Date: | drh 2003-06-05 15:05:35.000 |
Context
2003-06-06
| ||
15:44 | Add a prototype for the sqlite_vmprintf() function to sqlite.h. (CVS 1008) (check-in: 048cf55c7d user: drh tags: trunk) | |
2003-06-05
| ||
15:05 | Fix a typo in speed.html. (CVS 1007) (check-in: d01e6fbdde user: drh tags: trunk) | |
14:27 | Remove unused code from util.c. (CVS 1006) (check-in: 1bcaa841a3 user: drh tags: trunk) | |
Changes
Changes to www/speed.tcl.
1 2 3 | # # Run this Tcl script to generate the speed.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this Tcl script to generate the speed.html file. # set rcsid {$Id: speed.tcl,v 1.12 2003/06/05 15:05:35 drh Exp $ } puts {<html> <head> <title>Database Speed Comparison: SQLite versus PostgreSQL</title> </head> <body bgcolor=white> <h1 align=center> |
︙ | ︙ | |||
33 34 35 36 37 38 39 | <li><p> SQLite 2.7.6 is often faster (sometimes more than twice as fast) than MySQL 3.23.41 for most common operations. </p></li> <li><p> SQLite does not execute CREATE INDEX or DROP TABLE as fast as | | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | <li><p> SQLite 2.7.6 is often faster (sometimes more than twice as fast) than MySQL 3.23.41 for most common operations. </p></li> <li><p> SQLite does not execute CREATE INDEX or DROP TABLE as fast as the other databases. But this is not seen as a problem because those are infrequent operations. </p></li> <li><p> SQLite works best if you group multiple operations together into a single transaction. </p></li> </ul> |
︙ | ︙ |