/* * call-seq: * conn.finish() * * Closes the backend connection. */ static VALUE pgconn_finish(self) VALUE self; { PQfinish(get_pgconn(self)); DATA_PTR(self) = NULL; return Qnil; }