Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Latest commit

History

History

guile-dbd-mysql

 README - info file
Copyright (C) 2005,2008 Free Software Foundation, Inc.
Written by Maurizio Boriani <baux@member.fsf.org> 
and Linas Vepstas <linasvepstas@gmail.org>
* About
 guile-dbi provides a simple, generic, easy-to-use scheme/guile interface
 to SQL databases, such as Postgres or MySQL.
 The system is split into two parts: the DBI (database independent) part,
 which provides the scheme interfaces, and the DBD (database dependent)
 plugins, which connect to the actual SQL server. Currently, there are
 DBD backends for Postgres on MySQL.
 Please send patches and bug reports to guile-user@gnu.org, and be sure
 to copy Linas Vepstas <linasvepstas@gmail.com>. Alternately, they may
 be posted at bug reports to https://gna.org/bugs/?group=guile-dbi, in
 which case the mailing list should be notified anyway.
* About the MySQL DBD driver
 This is the driver used to connect to MySQL database servers.
 Connection string format:
 <user>:<pass>:<db name>:<connection type>:<path or ip>:[port]:[recon attemps]
 <connection type> must be one of the two strings "tcp" or "socket"
 <path or ip> specify the path of the socket or the ip address of the server
 <port> is used only if the connection type is "tcp"
 <recon attempts>: optional. Number of reconnection attempts after a db 
 connection failure. Default, if omitted, is 0 (no reconnection
 will be attempted).
* Guile DBI dependencies
 guile dbi depends from this packages, need them to build and run:
	
	Guile: http://www.gnu.org/software/guile/ 
		The guile scheme implementation
	Greg: http://www.gnu.org/software/greg/
		A great test framework.
	libc, gcc and so on...
* Guile DBI Documentation
 The doc directory contains the reference manual and some examples.
 The www pages are at http://www.gnu.org/software/guile-dbi or
 http://home.gna.org/guile-dbi/
 The project page is at: http://www.gna.org/projects/guile-dbi.
* Verifying
 The system is distributed using the normal tar.gz format; it can be
 extracted using the "tar -zxf guile-dbi-2.1.2.tar.gz" command at the
 command line.
 The files have been digitally signed to make sure that there was no
 corruption of the dataset during download, and to help ensure that
 no malicious changes were made to the code internals by third
 parties. The signatures can be checked with the gpg command:
 gpg --verify guile-dbi-2.1.2.tar.gz.asc
 which should generate output identical to (except for the date):
 gpg: Signature made Tue Feb 26 19:41:07 2008 CST using RSA key ID C0389241
 gpg: Good signature from "Linas Vepstas (current active email; others are inactive) <linasvepstas@gmail.com>"
Maintainer hints:
	To build a clean, fresh tool environment:
		libtoolize
		aclocal
		autoscan
		autoheader
		automake
		autoconf
		./configure
* Guile DBI License
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2, or (at your option)
 any later version.
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 GNU General Public License for more details.
 You should have received a copy of the GNU General Public License
 along with this software; see the file COPYING. If not, write to
 the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 Boston, MA 02111-1307 USA

AltStyle によって変換されたページ (->オリジナル) /