Jan Janak d79af6c63a - fixed daylight saving bug previously found in mysql module 22 years ago
..
Makefile 3175f89b8f Initial checkin. 22 years ago
README 3175f89b8f Initial checkin. 22 years ago
aug_alloc.c 3175f89b8f Initial checkin. 22 years ago
aug_alloc.h 3175f89b8f Initial checkin. 22 years ago
aug_debug.h 3175f89b8f Initial checkin. 22 years ago
aug_std.h 3175f89b8f Initial checkin. 22 years ago
aug_sysdep.h 3175f89b8f Initial checkin. 22 years ago
aug_util.c 3175f89b8f Initial checkin. 22 years ago
con_postgres.h 3175f89b8f Initial checkin. 22 years ago
copy_to_psql 3175f89b8f Initial checkin. 22 years ago
db_con.c 3175f89b8f Initial checkin. 22 years ago
db_mod.c 3175f89b8f Initial checkin. 22 years ago
db_res.c 3175f89b8f Initial checkin. 22 years ago
db_utils.c 3175f89b8f Initial checkin. 22 years ago
db_utils.h 3175f89b8f Initial checkin. 22 years ago
db_val.c d79af6c63a - fixed daylight saving bug previously found in mysql module 22 years ago
dbase.c 3175f89b8f Initial checkin. 22 years ago
dbase.h 3175f89b8f Initial checkin. 22 years ago
defs.h 3175f89b8f Initial checkin. 22 years ago
pg_type.h 3175f89b8f Initial checkin. 22 years ago
serpgctl 3175f89b8f Initial checkin. 22 years ago

README

# $Id$
#
# README
#
# History:
# --------
# 2003-04-07 this is a hack, from serctl, to make work with postgres
#
# DISCLAIMER:
# I have yet to get this software working in my production environment.
# Everything compiles and runs, but not for long. It may or may not be a
# good starting point for the ser postgres driver.
#
# I had a hard time with memory while developing this.
# So, I decided to incorporate some memory routines that
# I have been using for years. This didn't fix the problem,
# but it did make memory management easier.
#
# The postgres driver requires that you have postgres installed
# on your system. You can download this from: www.postgresql.org.
# For this I used postgres version 7.3.2, but I imagine almost any
# recent version should work.
#
# You will then need to have a postgres database somewhere, and it
# needs to have the tables created in it. Currently I am supporting
# 2 tables, location and subscriber. The file createtables.txt contains
# the table definitions and index definitions.
#
# You may wish to load the tables from a 0.8.10 database. The script
# copy_to_psql can be modified to open your mysql database and it outputs
# the necessary commands to populate the tables of the postgres database.
#
# To use the postgres module in your ser.cfg file is just like using the
# mysql module. Ie:
# loadmodule "/usr/local/lib/ser/modules/postgres.so"
#
# That's it. Good luck.
# ---greg
# Greg Fausak, August.Net Services, [email protected]