diff options
| author | Hiroshi Inoue | 2008-05-03 05:57:42 +0000 |
|---|---|---|
| committer | Hiroshi Inoue | 2008-05-03 05:57:42 +0000 |
| commit | 2f247b75d0e56b9ce407c91a3494228da518739e (patch) | |
| tree | 4a36a33315a851b7128963cdd89731ce2ec836bf /loadlib.c | |
| parent | 503a02867d4ae1a65af11fd6e4dd91cc499838d1 (diff) | |
1. Fix a bug in socket which uses a socket variable.
2. Support column alias without "as" so that links from
the SQLServer work.
3. Take ';' into account when the driver adds "for read only"
clause.
4. Use the E'.. ' notation not only in '=' expressions but
also in LIKE expressions.
5. Change to return milliseconds parts for timestamp fields.
6. Change to return a specific sqlstate in case of multiple
parameters.
Diffstat (limited to 'loadlib.c')
| -rw-r--r-- | loadlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -222,9 +222,9 @@ void *CALL_PQconnectdb(const char *conninfo, BOOL *libpqLoaded) { loaded_libpq = TRUE; /* ssllibs are already loaded by libpq - if (PQgetssl(pqconn)) */ + if (PQgetssl(pqconn)) loaded_ssllib = TRUE; - + */ } #else pqconn = PQconnectdb(conninfo); |
