├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── pgexec.c └── test.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eatonphil/pgexec/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eatonphil/pgexec/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eatonphil/pgexec/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eatonphil/pgexec/HEAD/README.md -------------------------------------------------------------------------------- /pgexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eatonphil/pgexec/HEAD/pgexec.c -------------------------------------------------------------------------------- /test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eatonphil/pgexec/HEAD/test.sql --------------------------------------------------------------------------------