JuliaDatabases / PostgreSQL.jl

DEPRECATED: use LibPQ.jl instead
https://github.com/invenia/LibPQ.jl
Other
60 stars 39 forks source link

Change prepare to just create a StatementHandle #4

Closed iamed2 closed 9 years ago

iamed2 commented 10 years ago

Currently prepare creates an "anonymous" prepared statement. This is wrong. It should store the statement as text and discover types though some combination of a) string inspection for PostgreSQL type annotations (perhaps through a psql string macro) and b) finding corresponding types to Julia types.

iamed2 commented 9 years ago

Done