This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
NeoStats/sqlsrv
2004-02-10 17:06:11 +00:00
..
api.c fix commit that should nto have happened 2004-02-07 23:47:56 +00:00
do_sql.c Namespace collision with SecureServ. 2003-12-28 10:23:32 +00:00
do_sql.h Namespace collision with SecureServ. 2003-12-28 10:23:32 +00:00
Makefile.in fix make clean not cleaning some files and added new make distclean which will restore everything back to the original distribution 2004-02-10 17:06:11 +00:00
parse.tab.c more updates for yacc/flex/bison. *sigh* 2003-12-28 06:43:50 +00:00
parse.tab.h more updates for yacc/flex/bison. *sigh* 2003-12-28 06:43:50 +00:00
parse.y more updates for yacc/flex/bison. *sigh* 2003-12-28 06:43:50 +00:00
README import of the secret project I have been working on the last few days. Read the README for more info on what this will do 2003-12-10 15:09:40 +00:00
rta.h sql emulation fixups 2003-12-28 07:23:42 +00:00
rtatables.c sql emulation fixups 2003-12-28 07:23:42 +00:00
token.c Some Valgrind fixes 2004-01-31 06:26:56 +00:00
token.l this fixes compiles on Eggy's BSD box! W00p 2003-12-27 05:13:31 +00:00

RTA gives you run time access to the data in your program.
It is intended for embedded system developers and can 
greatly simplify user-interface programs by separating the
daemon proper from the UI programs.

It is a specialized memory resident database interface
and/or virtual file system interface.  It is not a 
stand-alone server but a library which attaches to your
program and offers up your program's internal structures
and arrays as data base tables or as files in a file 
system.  It uses a subset of the Postgres protocol and is
compatible with the Postgres bindings for "C", PHP, and
the Postgres command line tool, psql.

The most recent release adds the ability to access your
internal tables as files in a virtual file system.  This
ability gives your programs the same power /proc gives 
the kernel.

Please see http://www.linuxappliancedesign.com for more
information and a working example.


/***************************************************************
 * Run Time Access
 * Copyright (C) 2003 Robert W Smith (bsmith@linuxtoys.org)
 *
 *  This program is distributed under the terms of the GNU LGPL.
 *  See the file COPYING file.
 **************************************************************/