blob: bcf5852f8cb0fb387d2d989a2dac6ff0117bd2b0 (
plain)
1
2
3
4
5
6
7
8
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
}
|