julia postgres libpq update example

The Julia community seems shy about posting examples of database things… use LibPQ, Tables db=”db” server=”localhost” usr=”psql” passwd=”nope” conn = LibPQ.Connection(“host=$server dbname=$db user=$usr password=$passwd”) sql = “””select char from foo””” conn2 = LibPQ.Connection(“host=$server dbname=$db user=$usr password=$passwd”) sql2 = prepare(conn2, “””update bar set agility = \$1 , bravery = \$2 where Read more