https://github.com/buganini/postgres-bsdconv
bsdconv() for PostgreSQL
https://github.com/buganini/postgres-bsdconv
Last synced: 12 months ago
JSON representation
bsdconv() for PostgreSQL
- Host: GitHub
- URL: https://github.com/buganini/postgres-bsdconv
- Owner: buganini
- Created: 2011-11-30T07:28:10.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2015-01-02T14:19:28.000Z (over 11 years ago)
- Last Synced: 2025-02-17T14:44:38.950Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 141 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Check path in Makefile
> make
> sudo make install
> psql
# CREATE FUNCTION bsdconv(text, text) RETURNS text AS 'bsdconv', 'Bsdconv' LANGUAGE C STRICT;
# select bsdconv('utf-8:upper:full:utf-8','test');
bsdconv
----------
TEST
(1 row)
# DROP FUNCTION IF EXISTS bsdconv(text, text);