22 lines
483 B
C#
22 lines
483 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SkyTeam
|
|
{
|
|
class DatenbankServices
|
|
{
|
|
private string ConnectionString = "Server=mysql.pb.bib.de;uid=pbt3h24akh;pwd=Dd3dwQgPeNxW;database=pbt3h24akh_SkyTeam;";
|
|
|
|
protected virtual string connectionString
|
|
{
|
|
get { return ConnectionString; }
|
|
private set { ConnectionString = value; }
|
|
}
|
|
|
|
|
|
}
|
|
}
|