2.0/Modules/m mysql

From AnopeWiki
Jump to: navigation, search
Language

English

Section Database
Module m_mysql
Author Anope

Description

This module allows other modules to use MySQL.

  • Enabled/Disabled using the ./extra command line configuration tool.
name= 
Module name, no not change.
mysql {...} 
name= 
name of MySQL connection.
database= 
MySQL database to use
server= 
MySQL Server to conenct to
username= 
Username to connect with
password= 
Password to connect with
port= 
MySQL Server port to connect with

Default Configuration

/*
 * m_mysql [EXTRA]
 *
 * This module allows other modules to use MySQL.
 */
#module
{
        name = "m_mysql"
 
        mysql
        {
                /* The name of this service. */
                name = "mysql/main"
                database = "anope"
                server = "127.0.0.1"
                username = "anope"
                password = "mypassword"
                port = 3306
        }
}