Exemple #1
0
        public Movie SelectMovie(string ID)
        {
            string table = ((Main)Jvedio.GetWindow.Get("Main")).GetCurrentList();

            if (string.IsNullOrEmpty(table))
            {
                return(DataBase.SelectMovieByID(ID));;
            }
            else
            {
                using (MySqlite mySqlite = new MySqlite("mylist"))
                {
                    return(mySqlite.SelectMovieBySql($"select * from {table} where id='{ID}'"));
                }
            }
        }