4P by xguru 2021-04-05 | favorite | 댓글 2개

- SQLite 에 부족한 여러 함수들을 추가해주는 동적 라이브러리
ㅤ→ 윈도우(DLL),리눅스(SO),맥(dylib)
- re (정규식) : REGEXP, regexp_like, regexp_substr, regexp_replace
- stats (통계) : median, stddev, stddev_pop, variance, percentile
- vsv (CSV를 가상 테이블로 로딩) : create virtual table temp.vsv using vsv(...); select * from vsv;
- unicode : upper(), lower(), title(), fold(), unaccent()..

SQLite Plus 였다가 이름이 SQLean 으로 변경 되었네요. 그리고 위에 없는 두가지 추가
- json1 : 보통 SQLite에 추가해서 빌드 되지만, 없는 경우 확장으로 사용 가능하게 제공
- math : 3.35에 있는 math 를 그 이전버전 에서 사용가능하게 확장으로 추가

SQLite 3.35 의 새 기능 https://news.hada.io/topic?id=3883
- Math 함수 : cos,sin,tan,log,ln,exp,floor,mod,pi,pow,power,radians,sqrt등

CG/SQL - SQLite용 Stored Procedure 코드 생성기 https://news.hada.io/topic?id=2998
SQLite를 도큐먼트DB로 사용하기 https://news.hada.io/topic?id=3271
simple-graph : SQLite를 Graph DB로 사용하기 https://news.hada.io/topic?id=3477