• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

t/H28-Aug-2021-306222

COPYINGH A D18-May-201334.3 KiB675553

Cego.pmH A D31-Aug-20212.3 KiB12862

Cego.xsH A D10-Jul-2016467 2613

Cego.xsiH A D10-Jul-201622.5 KiB804711

CegoXS.hH A D21-Nov-2010209 138

MANIFESTH A D24-Jun-2013279 2423

Makefile.PLH A D28-Aug-20211.9 KiB9566

READMEH A D31-Aug-20211.7 KiB7546

dbd.defH A D28-Aug-202142 21

dbdimp.cH A D31-Aug-202116.8 KiB869687

dbdimp.hH A D28-Aug-20214.1 KiB198143

perlobject.mapH A D24-Jun-20072.6 KiB10787

putlibsH A D23-May-2009188 74

typemapH A D24-Jun-200738 32

README

1
2	Cego-DBD
3	--------
4	A Perl DBD driver for the Cego database system
5
6	Version 1.5.2
7
8	(C)opyright 2007-2021 by Bjoern Lemke
9
10	This software comes under the GNU general public license
11
12Requirements
13-----------
14To build the Cego DBD driver, you need the following library packages available from www.lemke-it.com:
15
16   lfcbase-1.16.2.tar.gz
17   lfcxml-1.3.3.tar.gz
18   cego-2.47.6.tar.gz ( client library )
19
20Tested platforms and compliers
21----------------------------
22Cego DBD has just been tested for the following platforms
23
24     Mac OS X
25     Solaris SPARC/x86
26     Ubuntu Linux 10.10
27     Fedora 19
28     FreeBSD 8.x / 9.x
29
30using the GNU C++ or clang++ compiler
31
32Please note: Cego DBD uses the XS API in combination with C++ libraries.
33There are still expected some problems with different platforms.
34
35Installation
36------------
37Run the configure script with the following options
38
39    $ perl Makefile.PL --prefix=<prefix-dir>
40
41where prefix-dir is the base directory of the previous installed base,
42xml and Cego client header files and libraries ( e.g. /usr/local ).
43
44Run make
45
46    $ make
47
48This builds the complete DBD driver.
49
50To test the driver, you first have to build up a cego database and
51start up the daemon.
52
53Edit the connection parameter file dbd.def and put in the appropriate
54database connection parameters in the first line.
55
56The following format ist required
57
58<hostname>:<port>:<tableset>:<user>:<password>
59
60( e.g. geek:2200:TS1:lemke:lemke )
61
62Now you can run the database driver tests with
63
64    $ make test
65
66If succesful, deliver the package with
67
68    $ make install
69
70For more information about how to use Cego DBD, please refer to the HTML-based
71documentation on www.lemke-it.com
72
73Have fun !
74
75