json_accessors 1.3.1

This Release
json_accessors 1.3.1
Date
Status
Stable
Latest Stable
json_accessors 1.3.6 —
Other Releases
Abstract
JSON accessor functions
Description
Extension provides stored functions for accessing JSON fields by keys and converting JSON arrays.
Released By
theirix
License
PostgreSQL
Resources
Special Files
Tags

README

JSON accessor functions for PostgreSQL

Extension provides stored functions for accessing JSON fields by keys and converting JSON arrays.

This project contains PostgreSQL extension json_accessors with stored functions. Extension is native and writen in C on top of cJSON library.

PostgreSQL have had no JSON support until version 9.2, which introduced some support. These 9.2 functions won't help with indexing JSON data.

JSON parsing functions may be written using PL/V8 module, this article has an example of PL/V8 usage. This project provides accessor functions for JSON without using PL/V8.

Usage

Please consult with doc/json_accessors.md for a function and operator reference.

On PGXN please click on extension from Extensions section to view reference.

Installing extension

Building and installing extension with PGXS

C extension are best built and installed using PGXS. PGXS ensures that make is performed with needed compiler and flags. You only need GNU make and a compiler to build an extension on an almost any UNIX platform (Linux, Solaris, OS X).

Compilation:

gmake PG_CONFIG=<postgresql_install_dir>/bin/pg_config

Installation (as superuser):

gmake PG_CONFIG=<postgresql_install_dir>/bin/pg_config install

PostgreSQL server must be restarted and extension created in particular database as superuser:

create extension json_accessors

To drop all functions use:

drop extension json_accessors cascade

To uninstall extension completely you may use this command (as superuser):

gmake PG_CONFIG=<postgresql_install_dir>/bin/pg_config uninstall

Project contains SQL tests that can be launched on PostgreSQL with installed extension. Tests are performed on a dynamically created database with a specified user (with the appropriated permissions - create database, for example):

gmake PG_CONFIG=<postgresql_install_dir>/bin/pg_config PGUSER=postgres installcheck

Installing manually

Use this method if you have a precompiled extension and do not want to install this with help of PGXS. Or maybe you just do not have GNU make on a production server.

Copy library to the PostgreSQL library directory:

cp json_accessors.so `<postgresql_install_dir>/bin/pg_config --pkglibdir` 

Copy control file to the extension directory:

cp json_accessors.control `<postgresql_install_dir>/bin/pg_config --sharedir`/extension

Copy SQL prototypes file to the extension directory:

cp json_accessors--<version>.sql `<postgresql_install_dir>/bin/pg_config --sharedir`/extension

Create an extension by running:

create extension json_accessors

It creates all the accessors functions. Note that you must restart a server if a previous library was already installed at the same place.

To drop all functions use:

drop extension json_accessors cascade

To uninstall extension just remove files you copied before.

License information

You can use any code from this project under the terms of PostgreSQL License.

Please consult with the COPYING for license information.