コード例 #1
0
ファイル: Bridge.cs プロジェクト: tyler94/CIS560Project
        // gets the studio name using the studio id
        public static string FetchProductionCompany(int id)
        {
            string    sql  = SqlProcedures.FetchProductionCompany(id);
            DataTable temp = Call(sql);

            return(temp.Rows[0][0].ToString());
        }