diff options
author | Greg Larkin <glarkin@FreeBSD.org> | 2010-03-05 19:29:17 +0000 |
---|---|---|
committer | Greg Larkin <glarkin@FreeBSD.org> | 2010-03-05 19:29:17 +0000 |
commit | 6f9d598dba5c458063de4bfc9efbf7206bc021db (patch) | |
tree | 4d66d46a762705ac5fe8e53ea262711aa6f79717 /databases/Makefile | |
parent | 1dd6d887b015eca08ccd70a2ebd49445eaab0ded (diff) |
Provide mathematical, string and aggregate functions for SQL queries
using the SQLite loadable extensions mechanism.
Math functions:
acos, asin, atan, atn2, atan2, acosh, asinh, atanh, difference,
degrees, radians, cos, sin, tan, cot, cosh, sinh, tanh, coth,
exp, log, log10, power, sign, sqrt, square, ceil, floor, pi
String functions:
replicate, charindex, leftstr, rightstr, ltrim, rtrim, trim,
replace, reverse, proper, padl, padr, padc, strfilter
Aggregate functions:
stdev, variance, mode, median, lower_quartile, upper_quartile
WWW: http://www.sqlite.org/contrib
Submitted by: myself (glarkin)
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=250602
Diffstat (limited to 'databases/Makefile')
-rw-r--r-- | databases/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/databases/Makefile b/databases/Makefile index 507d83b219cf..abde40e36403 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -679,6 +679,7 @@ SUBDIR += sqlclient SUBDIR += sqldeveloper SUBDIR += sqlite-ext-inet + SUBDIR += sqlite-ext-miscfuncs SUBDIR += sqlite2 SUBDIR += sqlite3 SUBDIR += sqlite34 |