1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
|
2003-02-17 Lamar Owen <lamar.owen@wgcr.org>
* tagged and released 4.0beta1
2003-01-09 Lamar Owen <lamar.owen@wgcr.org>
* nspostgres.h: changed include order and conditionals for
AOLserver 4 use.
2002-12-23 Lamar Owen <lamar.owen@wgcr.org>
* nspostgres release 3.5 Official
2002-12-18 Lamar Owen <lamar.owen@wgcr.org>
* nspostgres.h and nspostgres.c: corrected some misinformation
in the comments.
* nspostgres.h: ChangeLog not in comments anymore; neither is the
contributor list.
* corrected contributor list in README.
2002-12-13 Scott S. Goodwin <scott@scottg.net>
* Makefile: Added targets for tagging and file release. Do a 'make
help' to see it.
* OVERWRITE: I have taken the latest OpenACS version of their postgres
module and overwritten the "pre-don" version. Had to take postgres.c
and split it into nspostgres.c and .h. Updated nspostgres Makefile to
allow compiling with the ACS flag, and to allow setting POSTGRES var
to "LSB" which will cause the module to look for PostgreSQL libraries
in the standard Linux locations. Lamar Owen is now primary maintainer
of this code.
2002-09-29 Scott Goodwin <scott@scottg.net>
* STARTING OVER: I'm tagging the nspostgres tree as "pre-don". Don
Baccus is going to be checking out the tree and either working
with what I've done here, or replacing it all with the current
version of the OpenACS postgres module. The name of the module
will stay nspostgres.
2002-07-01 Scott S. Goodwin <scott@scottg.net>
* all: reset file perms to 0644 for all files except the CVS
directory.
2002-06-02 Scott S. Goodwin <scott@scottg.net>
* nspostgres.c: Incorporated latest patches from the postgres
module that the OpenACS team maintains.
* TODO: Removed this file.
2001-12-13 Scott S. Goodwin <scott@scottg.net>
* TODO: added this file.
2001-12-03 Scott S. Goodwin <scott@scottg.net>
* nspostgres.c: Cleaned up the code comments to conform to
AOLserver coding style. Haven't populated most of the comments yet
:)
2001-09-28 Scott S. Goodwin <scott@scottg.net>
* nspostgres.h: Split out from nspostgres.c.
* Makefile: Cleaned up the Makefile. Fixed a problem where libpq
wasn't being loaded, so we'd end up with a "function not defined
error." In the previous version of the postgres driver, the
libpq.so is used in the EXTRA_OBJS variable. I wonder if this
means that the libpq.so file is loaded when the nspostgres.so
module is loaded. I'm not sure how that works. Now, libpq.a is
being used.
2001-09-08 Scott S. Goodwin <scott@scottg.net>
* Makefile: Turned off FOR_ACS_USE (I'll investigate what the
changes are and possibly integrate that code as the
default). Commented out lots and used the default include
$(NSHOME)/include/Makefile.module to handle the make and
installation process. The following now works:
make install POSTGRES=/your/path INST=/where/aolserver/is
* Makefile: changed to accept the
POSTGRES=/your/postgres/path. This is mandatory. Also changed to
expect NSHOME to be ../aolserver.
2001-08-31 Scott Goodwin <scott@scottg.net>
* ChangeLog: Created this ChangeLog file from the notes in the
postgres.c file of the original source. This nspostgres module was
created from the pgdriver2.0 sources found at OpenACS.org.
2001-04-14 Don Baccus <dhogaza@pacifier.com>
* Added Henry Minsky's patch which echoes changes in the Oracle
driver to stream blob data directly to the connection rather than
first spool to a temp file. Since the call to return the file to
the user doesn't return until after the operation is complete,
spooling was a waste of time and resource.
2001-03-01 Don Baccus <dhogaza@pacifier.com>
* Added automatic quoting of emulated bind variables in order to
make it compatible with the analogous routine in the Oracle
driver.
2000-12-30 Dan Wickstrom <dcwickstrom@earthlink.net>
* Added blob_select_file command. Needed an inverse to
blob_dml_file to support porting of webmail.
* Added bind variable emulation to support acs 4.0 porting.
2000-03-28 Lamar Owen <lamar.owen@wgcr.org>
* Merge with AOLserver 3.0rc1's nspostgres.c -- more error
checking from Jan Wieck.
* Also, changed behavior: if the datestyle parameter is not set in
config file, set it to be 'iso' by default -- it was not getting
correctly set.
* Wrapped ACS stuff inside FOR_ACS_USE #ifdef's.
* Added check for the existence of the PGDATESTYLE envvar and do
no setting of datestyle if it exists.
* Take two: make datestyle parameter override envvar, and make the
default go away.
2000-02-12 John Beimler <john@radiomind.com>
* Added a commented-out block showing settings for Debian/GNU
Linux with package installed AOLserver and PostgreSQL
2000-02-06 Lamar Owen <lamar.owen@wgcr.org>
* Added reimplementation of ns_column and ns_table commands --
adapted the code in the ArsDigita Oracle driver to work in the
PostgreSQL driver's skeleton. Will revisit this implementation
for cleanup once functionality fully verified.
1999-12-13 Lamar Owen <lamar.owen@wgcr.org>
* Makefile: Cleaned up assumptions about NSHOME, PGLIB, and PGINC
locations.
* Makefile: Added a commented-out block showing settings for
RedHat Linux with the PostgreSQL RPM's installed.
1999-12-01 Don Baccus <dhogaza@pacifier.com>
* Don added the following improvements in December of 1999:
* 1. When a handle's returned to the pool and the handle's in
transaction mode, the driver rolls back the transaction.
* 2. Reopens crashed backends, retrying query if told to by
postmaster.
* 3. ns_db ntuples now returns the number of tuples affected by
"insert", "update", and "delete" queries (only worked for select
before).
* 4. Supports the following, assuming you've named your driver
"postgres" in your .ini file:
[ns/db/driver/postgres]
datestyle=iso
(or any legal Postgres datestyle)
* 5. The driver's name's been changed from "Postgre95" to
"PostgreSQL", the current official name of the database software.
|