LibPQ.jl icon indicating copy to clipboard operation
LibPQ.jl copied to clipboard

A Julia wrapper for libpq

Results 64 LibPQ.jl issues
Sort by recently updated
recently updated
newest added

MWE (less connection to a database with a large table): ```julia using LibPQ # This works fine if you run it _before_ doing LibPQ stuff. # Allocates about 28GB of...

Starts to address #250 . Entirely fixes the bug as described in that issue (Float64s, each call to `getindex` allocates nothing). The changes include: 1. ~~introducing a layer of indirection...

MWE (I've used a connection to a private DB in this issue, so you'll have to construct your own DB in order to run locally): ```julia using BenchmarkTools, JSON3, LibPQ,...

This pull request changes the compat entry for the `DocStringExtensions` package from `0.8.0` to `0.8.0, 0.9`. This keeps the compat entries for earlier versions. Note: I have not tested your...

Hello, I have a code where I write data into a Postgres db (using LibPQ.jl) which runs in parallel task. I had general issues with multithreading but hose could be...

The package does not support `DBInterface.jl` which would be nice for switching databases and to not have to re-write code.

Hi! I tend to do `SELECT` queries that return a large dataset for which the standard method takes a few seconds: ```julia using LibPQ, BenchmarkTools, DataFrames conn = LibPQ.Connection("dbname=postgres user=postgres")...

This is related to https://github.com/invenia/LibPQ.jl/issues/242 The fix allows one to use [LISTEN](https://www.postgresql.org/docs/9.1/sql-listen.html) and [NOTIFY](https://www.postgresql.org/docs/9.1/sql-notify.html). See the following minimum working example: ```julia using LibPQ lpqc = LibPQ.libpq_c function onenotify() conn =...