Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Documentation updates for the round() function. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
81fe64736e695db5fe37cebf28457385 |
User & Date: | drh 2011-10-21 16:42:26.795 |
Context
2011-10-21
| ||
18:36 | Add documentation for the SQLITE_DIRECT_OVERFLOW_READ compile-time option. (check-in: 02ece32458 user: drh tags: trunk) | |
16:42 | Documentation updates for the round() function. (check-in: 81fe64736e user: drh tags: trunk) | |
2011-10-20
| ||
16:34 | Update the link to Intuit on the famous.html page. (check-in: 1c732d7d88 user: drh tags: trunk) | |
Changes
Changes to pages/lang.in.
︙ | ︙ | |||
2205 2206 2207 2208 2209 2210 2211 | string Z for every occurrence of string Y in string X. ^The [BINARY] collating sequence is used for comparisons. ^If Y is an empty string then return X unchanged. ^If Z is not initially a string, it is cast to a UTF-8 string prior to processing. } funcdef {round(X) round(X,Y)} {} { | | | | 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 | string Z for every occurrence of string Y in string X. ^The [BINARY] collating sequence is used for comparisons. ^If Y is an empty string then return X unchanged. ^If Z is not initially a string, it is cast to a UTF-8 string prior to processing. } funcdef {round(X) round(X,Y)} {} { ^The round(X,Y) function returns a floating-point value X rounded to Y digits to the right of the decimal point. ^If the Y argument is omitted, it is assumed to be 0. } funcdef {rtrim(X) rtrim(X,Y)} {} { ^The rtrim(X,Y) function returns a string formed by removing any and all characters that appear in Y from the right side of X. ^If the Y argument is omitted, rtrim(X) removes spaces from the right side of X. |
︙ | ︙ |