Vaclav Petras c6e81b98e8 Fix spelling in comments, esp. in wxGUI code (#1357) 4 anos atrás
..
test 956e32fa47 Typo fix 13 anos atrás
Makefile 04b1b24bfc Move dbstubs.h to fix build failures from https://trac.osgeo.org/grass/changeset/66773 9 anos atrás
README db49180dd7 welcome to GRASS 7.0.svn 17 anos atrás
alloc.c baa5b704a0 db lib: db wrapper for free() should return void, not void * 14 anos atrás
case.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
column.c c6e81b98e8 Fix spelling in comments, esp. in wxGUI code (#1357) 4 anos atrás
columnfmt.c d33152f1d5 Numerous typos fixed (identified with tools/fix_typos.sh) 8 anos atrás
connect.c 0b3abe9fa8 lib/dbmibase: fix get/set connection parameters, clarify default and current parameters 6 anos atrás
cursor.c d33152f1d5 Numerous typos fixed (identified with tools/fix_typos.sh) 8 anos atrás
datetime.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
dbmscap.c 94cca33234 Check content of string instead of its pointer address (#1263) 4 anos atrás
dbstubs.h 04b1b24bfc Move dbstubs.h to fix build failures from https://trac.osgeo.org/grass/changeset/66773 9 anos atrás
default_name.c 0b3abe9fa8 lib/dbmibase: fix get/set connection parameters, clarify default and current parameters 6 anos atrás
dirent.c 8da3d1826f Avoid redefinition of macros (#1263) 4 anos atrás
error.c 808ae15ac6 dbmi_base lib: add missing arg type 7 anos atrás
handle.c edfa1e7688 dbmi: update dox strings for db_set_handle 13 anos atrás
index.c 09b7db1dd9 doxygen errors fixed 12 anos atrás
interval.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
isdir.c 623c7b94ec simplify wingrass LFS 11 anos atrás
legal_dbname.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
login.c 3c108bf8e4 Fix expressions which evaluates to zero treated as a null pointer constant (#1263) 4 anos atrás
macros.h db49180dd7 welcome to GRASS 7.0.svn 17 anos atrás
ret_codes.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
sqlCtype.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
sqltype.c e8e0c8eb69 revert https://trac.osgeo.org/grass/changeset/54684 12 anos atrás
string.c 9a9b8230ed various spelling errors fixed 9 anos atrás
strip.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
table.c c6e81b98e8 Fix spelling in comments, esp. in wxGUI code (#1357) 4 anos atrás
token.c c966052566 doxygen strings for token.c 15 anos atrás
value.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
valuefmt.c d33152f1d5 Numerous typos fixed (identified with tools/fix_typos.sh) 8 anos atrás
whoami.c 3ef1991bf8 typos fixed (bug trac https://trac.osgeo.org/grass/ticket/1591) 13 anos atrás
xdr.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
xdr.h 8868d4b686 indent -bad -bap -bbb -br -bli0 -bls -cli0 -ncs -fc1 -hnl -i4 \ 16 anos atrás
xdrchar.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
xdrcolumn.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
xdrdatetime.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
xdrdouble.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
xdrfloat.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
xdrhandle.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
xdrindex.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
xdrint.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
xdrprocedure.c 1dba9b62d4 dox: fixing several doxygen warnings (wrong file names, typos, lt gt chars) 12 anos atrás
xdrshort.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
xdrstring.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
xdrtable.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
xdrtoken.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
xdrvalue.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás
zero.c 7259e5a937 update doxygen documentation of DBMI library (BASE) 14 anos atrás

README

This library contains routines called both by client and drivers.

The low level communication is in the xdr*.c files. The routines
All the xdr*.c files create and destroy and XDRS structure.
the xdr_destroy() calls fflush() on the FILE * which is necessary
for the communication along both pipes to work properly.

The client stubs are in c_*.c files.

The driver implementation for any routine, say db_xxxx() is
to be named db_driver_xxxx().

The drivers must write the db_driver_xxxx()
For example
db_ls() /* client routine */
db_driver_ls() /* driver routine */

----------------------------------------------------------
The following variables need to be supplied by gmake

XDRLIB:
the library which contains the xdr_int(), et al routines
sun: none, seems that these are in -lc
dg aviion: none, seems that these are in -lc
intergraph: XDRLIB = -lbsd
linux0.99: XDRLIB = -lrpclib
mips: XDRLIB = -lrpcsvc
sgi: XDRLIB = -lsun

USE_DIRECT:
#define that says to use #include and struct direct
instead of #include and struct dirent

mips: USE_DIRECT = -DUSE_DIRECT

USE_BUFFERED_IO:
#define that says to not to call setbuf(fd, NULL) to force unbuffered io

sun: USE_BUFFERED_IO = -DUSE_BUFFERED_IO
mips: USE_BUFFERED_IO = -DUSE_BUFFERED_IO
note:
intergraph, sgi won't work unless io is unbuffered.
sun, mips can use buffered io.

CC:
mips: CC = /bsd43/bin/cc

---------------
The $DBMSCAP file should have the remote-shell full path in the
command and not let $PATH handle it.

sun: /usr/ucb/rsh
mips: /bin/net/rsh
intergraph: /usr/bin/rcmd
sgi: /usr/bsd/rsh