I would like to better document my code rather than having a statement like the below:
pg_c = PGconn.connect("Main-my_db_lk", 5433, '', '', "report_center", "repozenter", "rp_23_xhg")
How do I know what is what in this statement? Is it possible to point out each parameter to the method like this: port => 5433, host=> xxx
How better write the connection string? what are the empty 3rd and 4th parameters?
Thanks