An open API service indexing awesome lists of open source software.

https://github.com/buganini/mysql-udf-bsdconv

bsdconv() for MySQL
https://github.com/buganini/mysql-udf-bsdconv

Last synced: about 1 year ago
JSON representation

bsdconv() for MySQL

Awesome Lists containing this project

README

          

Check path in Makefile

> make

> sudo make install

> mysql -u root
mysql> CREATE FUNCTION Bsdconv RETURNS STRING SONAME 'udf_bsdconv.so';
Query OK, 0 rows affected (0.00 sec)

mysql> select bsdconv('utf-8:full:upper:utf-8','test');
+------------------------------------------+
| bsdconv('utf-8:full:upper:utf-8','test') |
+------------------------------------------+
| TEST |
+------------------------------------------+
1 row in set (0.01 sec)

mysql> DROP FUNCTION IF EXISTS bsdconv;
Query OK, 0 rows affected (0.00 sec)