CinderellaMGS.SQL_Queries.insertPair C# (CSharp) 메소드

insertPair() 공개 메소드

public insertPair ( string cinderellaID, string godmotherID ) : void
cinderellaID string
godmotherID string
리턴 void
        public void insertPair(string cinderellaID, string godmotherID)
        {
            string query = "INSERT INTO [CinderellaFGPairing]([cinderellaID], [fairyGodmotherID]) VALUES(";
            query += cinderellaID + ", " + godmotherID + ")";

            database.ExecuteQuery(query);
        }