Hallo,
steh an der gleichen Stelle.
Leider geht bei mir die DB-Anbindung noch nicht und ich bekommen nach dem ausführen von:
---------
./configure --enable-plugins --with-mysql
---------
die Meldung
---------
checking for mysql_init in -lmysqlclient... no
configure: error: --with-mysql was given, but test for mysqlclient failed
See `config.log' for more details.
---------
Die Ausgaben in diesem File helfen mir aber auch nicht weiter.
Kann mir jemand einen Tipp geben wo es klemmt ?
Meine Datenbank schaut so aus:
---------
CREATE TABLE IF NOT EXISTS `fms` (
`id` int(11) NOT NULL auto_increment,
`uhrzeit` varchar(12) collate latin1_german1_ci NOT NULL,
`status` char(1) collate latin1_german1_ci NOT NULL,
`kennung` varchar(9) collate latin1_german1_ci NOT NULL,
`richtung` char(10) collate latin1_german1_ci NOT NULL,
`text` varchar(255) collate latin1_german1_ci NOT NULL,
`tki` char(1) collate latin1_german1_ci NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german1_ci AUTO_INCREMENT=0 ;
CREATE TABLE IF NOT EXISTS `zvei` (
`id` int(11) NOT NULL auto_increment,
`Uhrzeit` varchar(12) collate latin1_german1_ci NOT NULL default '',
`Zvei` varchar(5) collate latin1_german1_ci NOT NULL default '',
`Typ` char(1) collate latin1_german1_ci NOT NULL default '',
`Meldung` varchar(80) collate latin1_german1_ci NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german1_ci AUTO_INCREMENT=0 ;
CREATE TABLE IF NOT EXISTS `dme` (
`id` int(11) NOT NULL auto_increment,
`Uhrzeit` varchar(12) collate latin1_german1_ci NOT NULL default '',
`Typ` char(1) collate latin1_german1_ci NOT NULL default '',
`Adressat` varchar(80) collate latin1_german1_ci NOT NULL default '',
`Subadresse` varchar(80) collate latin1_german1_ci NOT NULL default '',
`Meldung` varchar(200) collate latin1_german1_ci NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german1_ci AUTO_INCREMENT=0 ;
---------
Vielen Dank.
Matthias