Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Calling a binary that has access to the database #11

Open
benintech opened this issue Jan 31, 2017 · 1 comment
Open

Calling a binary that has access to the database #11

benintech opened this issue Jan 31, 2017 · 1 comment

Comments

@benintech
Copy link

Hallo,

I try to understand why the following code fails :
(sogo-tool is a binary that accesses a PostgreSQL database)
CREATE OR REPLACE FUNCTION showSig() RETURNS text AS '
#!/bin/bash
LD_LIBRARY_PATH="/usr/local/lib:/usr/local/lib/sogo"
export LD_LIBRARY_PATH
/usr/local/sbin/sogo-tool user-preferences get defaults john.doe SOGoMailSignature
' LANGUAGE plsh;

Within psql :
SELECT showSig();
ERROR: showsig:

Directly from the shell, it works :
$ /usr/local/sbin/sogo-tool user-preferences get defaults john.doe SOGoMailSignature
SOGoMailSignature: "John W. Doe - New York City - USA"

Any idea ?

@petere
Copy link
Owner

petere commented Feb 13, 2017

Maybe because sogo-tool writes something to stderr? Try with 2>/dev/null or similar.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants