[Refdb-cvs] CVS: refdb/etc Makefile.am,1.13.2.1,1.13.2.2 refdbdrc,1.10.2.2,1.10.2.3
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2005-05-06 23:43:35
|
Update of /cvsroot/refdb/refdb/etc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7403/etc Modified Files: Tag: Release_0_9_5_stable Makefile.am refdbdrc Log Message: set default encoding for mysql Index: Makefile.am =================================================================== RCS file: /cvsroot/refdb/refdb/etc/Makefile.am,v retrieving revision 1.13.2.1 retrieving revision 1.13.2.2 diff -u -U2 -r1.13.2.1 -r1.13.2.2 --- Makefile.am 15 Apr 2005 22:34:36 -0000 1.13.2.1 +++ Makefile.am 6 May 2005 23:43:21 -0000 1.13.2.2 @@ -16,4 +16,5 @@ sed 's%<pkgdatadir>%$(pkgdatadir)%' | \ sed 's%<dbs_port>%$(dbs_port)%' | \ + sed 's%<dbs_encoding>%$(dbs_encoding)%' | \ sed 's%<db_path>%$(db_dir)%' | \ sed 's%<db_server>%$(db_server)%' > $@ Index: refdbdrc =================================================================== RCS file: /cvsroot/refdb/refdb/etc/refdbdrc,v retrieving revision 1.10.2.2 retrieving revision 1.10.2.3 diff -u -U2 -r1.10.2.2 -r1.10.2.3 --- refdbdrc 15 Apr 2005 22:35:22 -0000 1.10.2.2 +++ refdbdrc 6 May 2005 23:43:26 -0000 1.10.2.3 @@ -27,5 +27,5 @@ # The database server we want to connect to. Currently mysql, -# pgsql, and sqlite are supported +# pgsql, sqlite, and sqlite3 are supported dbserver <db_server> @@ -89,8 +89,11 @@ # Specify the default encoding that newly created databases use. This -# feature is currently only supported by PostgreSQL. Possible values are +# feature is currently only supported by PostgreSQL and MySQL 4.x. +# Possible values for PostgreSQL are: # SQL_ASCII, EUC_JP, EUC_CN, EUC_KR, EUC_TW, UNICODE, MULE_INTERNAL, LATIN1 # through LATIN5, KOI8, WIN, ALT -db_encoding UNICODE +# The allowed values for MySQL depend on your local installation. Useful +# defaults are latin1 and utf8 +db_encoding <dbs_encoding> # Specify the default encoding of imported RIS data. |