-
create table test_trig2(ts timestamp,v char(10),v2 char(10));
select cs_create('test_trig2','ts',autoupdate:=true);
insert into test_trig2 values(now(),'123','456');
The connection to the server was…
amutu updated
10 years ago
-
Hi all, I'm getting a bizarre issue getting a date string to parse into my querystring, which stems from not being able to wrap query parameters in single quotes. While I have found a workaround, whi…
-
It would be great to have Oracle Spatial / PostGIS support for geometries in this FDW.
Oracle Spatial and PostGIS use different internal geometry representations. Therefore, some kind of conversion n…
-
We're experiencing an issue where casts to string types in a view don't seem to have parity behavior between PSQL and the JDBC driver. This affects at least the latest driver version 9.3-1100 with PSQ…
-
I've refactored my code to work around this, but there's an uncheked range error sometimes raising a `panic()`, when for some reason the list is empty:
https://github.com/lib/pq/blob/master/conn.go#L…
-
I'm trying to incorporate a `cl-postgres` into an event loop, in order to receive notification.
Here's my code:
``` lisp
(require :cl-async)
(require :postmodern)
(require :usocket)
(postmodern:con…
-
If you insert a []byte in a Text field in a database, querying the same field later returns the encoded version. I guess this is because decode() doesn't deal with t_text at all. I noticed that when e…
-
I use custom types in postgres. In this example I use a json typed column named data.
when I run
```
rows, err := db.Query("SELECT id,data from relationship limit 1")
if err != nil {
…