├── .gitignore ├── LICENSE ├── Makefile ├── README ├── ebin └── .empty ├── include └── pgsql.hrl ├── rebar ├── rebar.config ├── src ├── epgsql.app.src ├── pgsql.erl ├── pgsql_binary.erl ├── pgsql_connection.erl ├── pgsql_fdatetime.erl ├── pgsql_idatetime.erl ├── pgsql_sock.erl └── pgsql_types.erl ├── test_data ├── epgsql.crt ├── epgsql.key ├── root.crt ├── root.key └── test_schema.sql ├── test_ebin └── .empty └── test_src └── pgsql_tests.erl /.gitignore: -------------------------------------------------------------------------------- 1 | *.beam 2 | *.boot 3 | *.script 4 | ebin/*.app 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/README -------------------------------------------------------------------------------- /ebin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/pgsql.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/include/pgsql.hrl -------------------------------------------------------------------------------- /rebar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/rebar -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/rebar.config -------------------------------------------------------------------------------- /src/epgsql.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/src/epgsql.app.src -------------------------------------------------------------------------------- /src/pgsql.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/src/pgsql.erl -------------------------------------------------------------------------------- /src/pgsql_binary.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/src/pgsql_binary.erl -------------------------------------------------------------------------------- /src/pgsql_connection.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/src/pgsql_connection.erl -------------------------------------------------------------------------------- /src/pgsql_fdatetime.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/src/pgsql_fdatetime.erl -------------------------------------------------------------------------------- /src/pgsql_idatetime.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/src/pgsql_idatetime.erl -------------------------------------------------------------------------------- /src/pgsql_sock.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/src/pgsql_sock.erl -------------------------------------------------------------------------------- /src/pgsql_types.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/src/pgsql_types.erl -------------------------------------------------------------------------------- /test_data/epgsql.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/test_data/epgsql.crt -------------------------------------------------------------------------------- /test_data/epgsql.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/test_data/epgsql.key -------------------------------------------------------------------------------- /test_data/root.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/test_data/root.crt -------------------------------------------------------------------------------- /test_data/root.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/test_data/root.key -------------------------------------------------------------------------------- /test_data/test_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/test_data/test_schema.sql -------------------------------------------------------------------------------- /test_ebin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_src/pgsql_tests.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wg/epgsql/HEAD/test_src/pgsql_tests.erl --------------------------------------------------------------------------------