class PG::Connection

def self.quote_connstr( value )

Experimental RBS support (using type sampling data from the type_fusion project).

def self.quote_connstr: (String value) -> String

This signature was generated using 6 samples from 1 application.

## Quote a single +value+ for use in a connection-parameter string.
def self.quote_connstr( value )
	return "'" + value.to_s.gsub( /[\\']/ ) {|m| '\\' + m } + "'"
end