23 lines
578 B
C#
23 lines
578 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MySql.Data.MySqlClient;
|
|
|
|
namespace SkyTeam
|
|
{
|
|
static class DatenbankServices
|
|
{
|
|
// private static readonly string connectionString = "server=localhost;uid=root;pwd=root;database=hci";
|
|
private static readonly string connectionString ="Server=mysql.pb.bib.de;uid=pbt3h24akh;pwd=Dd3dwQgPeNxW;database=pbt3h24akh_SkyTeam;";
|
|
|
|
public static string GetConnection()
|
|
{
|
|
return connectionString;
|
|
}
|
|
|
|
|
|
}
|
|
}
|