Anope IRC Services

Anope Support => 2.0.x/1.9.x Support => Topic started by: Manfred on November 16, 2010, 10:45:48 PM

Title: ( solved ) Need help for MYSQL
Post by: Manfred on November 16, 2010, 10:45:48 PM
i have compiled anope with mysql support. the db_mysql_write , db_mysql_read ..... are createt during the installation

what are the right settings in services.conf that i can use mysql db ?

the section for connection to the sql server are done
Title: Re: Need help for MYSQL
Post by: therock247uk on November 17, 2010, 06:32:47 PM
My example...

module { name = "m_mysql" }
mysql
{
   database = "anope"
   server = "127.0.0.1"
   username = "anope"
    password = "anope"
    port = "3306"
}

change the db name/user/pass etc to your settings.
Title: Re: Need help for MYSQL
Post by: Manfred on November 17, 2010, 08:01:18 PM
My example...

module { name = "m_mysql" }
mysql

change the db name/user/pass etc to your settings.

the module name is for mysql or should i use db_mysql_read or write or execute ?