Other functions besides those listed on this page are available, and they are listed on the SQLite website. Note that parameters to SQL functions are typeless. isintegerSummary: This function is used to determine if a string represents an integral value. Parameters: One, the string to be checked. For the function to return true, the string must consist entirely of characters in the range '0'-'9'. The only exception is the leading character, which may also be one of the characters '+' and '-'. Return: Boolean isintegerdateSummary: This function is used to determine if a string represents an integral value, and if that integral value represents a bit-field encoded date. Parameters: One, the string to be checked. It must represent an
integer under the same restrictions as checked by
Return: Boolean isintegerrangeSummary: This function is used to determine if a string represents an integral value, and if that integral value is within a specified range. Parameters: This function takes three parameters. The first parameter
is the string to be checked. It must have the same format as checked by the function
The second and third represent the lower and upper bounds. Either of the bounds can be null, in which case that bound will not be checked. Return: Boolean isintegertimeSummary: This function is used to determine if a string represents an integral value, and if that integral value represents a bit-field encoded time. Parameters: It must represent an
integer under the same restrictions as checked by
Return: Boolean shortstringSummary: The purpose of this function is to create a truncated user-friendly version of a long string. For example, to show only the start of a long block of text. Parameters The first parameter is the string to be truncated, and the second parameters it the maximum length of the returned string. Return:A string with no more than the specified number of characters. If a return character is found earlier, then this will be used to limit the string length. timestampSummary: Create an integer value representing the current time. Parameters: None Return: An integer with the same semantics as a |
A web services application that provides an SQL database for each user. Users thus have a datastore that can be located similar to an e-mail address (user@mycompany.com). This data store can be used to store contact lists, memos, and to-do lists in a manner accessible throughout the internet. The format for standard data is specified, so that multiple viewers will be possible. |