You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exception in thread "main" java.lang.RuntimeException: org.postgresql.util.PSQLException: The server's standard_conforming_strings parameter was reported as postgres. The JDBC driver expected on or off.
Php (using php-pgsql): Numbers are garbled
...
Running test: CREATE TABLE test.tb1 (id int, value float, c1 char(10), primary key(id))
Returns 0 rows
Running test: INSERT INTO test.tb1 VALUES (1, 1.1, 'a'), (2, 2.2, 'b')
Returns 0 rows
Running test: SELECT * FROM test.tb1
Expected: 1, 1.1, a, got: 0, ?���, a
Python (using psycopg2): fixed
The text was updated successfully, but these errors were encountered:
c (using libpq-fe): ok
Java (using postgresql JDBC):
Php (using php-pgsql): Numbers are garbled
Python (using psycopg2): fixed
The text was updated successfully, but these errors were encountered: