class PG::Connection
def self.connect_hash_to_string( hash )
Experimental RBS support (using type sampling data from the type_fusion
project).
def self.connect_hash_to_string: (Hash hash) -> String
This signature was generated using 1 sample from 1 application.
Convert Hash options to connection String
def self.connect_hash_to_string( hash ) hash.map { |k,v| "#{k}=#{quote_connstr(v)}" }.join( ' ' ) end