mirror of
https://github.com/mm201/pkmn-classic-framework.git
synced 2026-08-01 23:53:39 -05:00
18 lines
447 B
C#
18 lines
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
using MySql.Data.MySqlClient;
|
|
|
|
namespace PokeFoundations.Data
|
|
{
|
|
public class DataMysql : DataAbstract
|
|
{
|
|
private MySqlConnection CreateConnection()
|
|
{
|
|
return new MySqlConnection("Server=localhost;Database=pfound;User ID=pfound;Password=goldeen need log;Pooling=true;");
|
|
}
|
|
}
|
|
}
|