Documentation
¶
Overview ¶
Package pgconfig contains a Go interface for the "pg_config" utility
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetConfigurationParameter ¶
func GetConfigurationParameter(pgConfigBinary string, parameter ConfigurationParameter) (string, error)
GetConfigurationParameter retrieves a PostgreSQL installation configuration parameter
Types ¶
type ConfigurationParameter ¶
type ConfigurationParameter string
ConfigurationParameter represents a PostgreSQL configuration parameter name
const ( // BinDir is the location user executables. Use this, for example, // to find the psql program. This is normally also the location // where the pg_config program resides. BinDir ConfigurationParameter = "bindir" // PkgLibDir is the location of dynamically loadable modules, or // where the server would search for them. (Other // architecture-dependent data files might also be installed in // this directory.) PkgLibDir ConfigurationParameter = "pkglibdir" // files. ShareDir ConfigurationParameter = "sharedir" )
Click to show internal directories.
Click to hide internal directories.