Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added documentation on the SQLITE_4_BYTE_ALIGNED_MALLOC compile-time option. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
dc93bef322f53c1912280f05da05f19b |
User & Date: | drh 2010-09-13 12:06:55.000 |
Context
2010-09-13
| ||
18:56 | Changes to SELECT documentation related to compound SELECT operators. (check-in: 182ba19363 user: dan tags: trunk) | |
12:06 | Added documentation on the SQLITE_4_BYTE_ALIGNED_MALLOC compile-time option. (check-in: dc93bef322 user: drh tags: trunk) | |
2010-09-11
| ||
17:46 | Change to requirement marks in lang.in. (check-in: b5882b3f8f user: dan tags: trunk) | |
Changes
Changes to pages/compile.in.
︙ | ︙ | |||
136 137 138 139 140 141 142 143 144 145 146 147 148 149 | <li> [SQLITE_MAX_VARIABLE_NUMBER] </li> </ul> <a name="controlfeatures"></a> <h2>1.3 Options To Control Operating Characteristics</h2> <tcl> COMPILE_OPTION {SQLITE_CASE_SENSITIVE_LIKE} { If this option is present, then the built-in [LIKE] operator will be case sensitive. This same effect can be achieved at run-time using the [case_sensitive_like pragma]. } COMPILE_OPTION {SQLITE_HAVE_ISNAN} { | > > > > > > > | 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | <li> [SQLITE_MAX_VARIABLE_NUMBER] </li> </ul> <a name="controlfeatures"></a> <h2>1.3 Options To Control Operating Characteristics</h2> <tcl> COMPILE_OPTION {SQLITE_4_BYTE_ALIGNED_MALLOC} { On most systems, the malloc() system call returns a buffer that is aligned to an 8-byte boundary. But on some systems (ex: windows) malloc() returns 4-byte aligned pointer. This compile-time option must be used on systems that return 4-byte aligned pointers from malloc(). } COMPILE_OPTION {SQLITE_CASE_SENSITIVE_LIKE} { If this option is present, then the built-in [LIKE] operator will be case sensitive. This same effect can be achieved at run-time using the [case_sensitive_like pragma]. } COMPILE_OPTION {SQLITE_HAVE_ISNAN} { |
︙ | ︙ |