aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Data.MySQL/MySQLDatabaseMapper.cs
blob: 1514f008fa562572e8072f24428e09797abd2b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System.Data.Common;
using MySql.Data.MySqlClient;

namespace OpenSim.Framework.Data.MySQL
{
    public class MySQLDatabaseMapper : OpenSimDatabaseMapper
    {
        public MySQLDatabaseMapper(string connectionString)
            : base(connectionString)
        {
        }

        public override DbConnection GetNewConnection()
        {
            MySqlConnection connection = new MySqlConnection(m_connectionString);
            return connection;
        }

        public override string CreateParamName(string fieldName)
        {
            return "?" + fieldName;
        }
    }
}