diff options
Diffstat (limited to 'pgsql_connect.cpp')
-rw-r--r-- | pgsql_connect.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pgsql_connect.cpp b/pgsql_connect.cpp new file mode 100644 index 0000000..bcf5852 --- /dev/null +++ b/pgsql_connect.cpp @@ -0,0 +1,9 @@ +// this process / function connects to a postgresql atomspace backend, creating it if needed + +#include <opencog/atomspace/AtomSpace.h> + +extern "C" void pgsql_connect(opencog::Handle name) +{ + // TODO: please install postgresql-server + // then follow instructions in src/atomspaces/opencog/persist/sql/README.md +} |