예제 #1
0
        public List <Rezultat> UcitajSve()
        {
            List <Rezultat> lista = new List <Rezultat>();

            try
            {
                using (SqlConnection con = new SqlConnection(Konekcija.GetCon()))
                {
                    SqlCommand cmd = new SqlCommand();
                    cmd.Connection  = con;
                    cmd.CommandType = CommandType.Text;
                    cmd.CommandText = "Select * from Rezultat " +
                                      "order by Score desc";
                    con.Open();
                    SqlDataAdapter da = new SqlDataAdapter(cmd);
                    DataTable      dt = new DataTable();
                    da.Fill(dt);
                    foreach (DataRow red in dt.Rows)
                    {
                        Rezultat r = new Rezultat
                        {
                            Ime   = Convert.ToString(red["Ime"]),
                            Score = Convert.ToInt32(red["Score"])
                        };
                        lista.Add(r);
                    }
                }
                return(lista);
            }
            catch (Exception ex)
            {
                _poruka = ex.Message;
                return(null);
            }
        }
예제 #2
0
 public bool Upisi(int score, string ime = "Nepoznat")
 {
     try
     {
         using (SqlConnection con = new SqlConnection(Konekcija.GetCon()))
         {
             SqlCommand cmd = new SqlCommand();
             cmd.Connection  = con;
             cmd.CommandType = CommandType.StoredProcedure;
             con.Open();
             cmd.CommandText = "usp_Upisi";
             cmd.Parameters.AddWithValue("@ime", ime);
             cmd.Parameters.AddWithValue("@score", score);
             cmd.ExecuteNonQuery();
             return(true);
         }
     }
     catch (Exception ex)
     {
         _poruka = ex.Message;
         return(false);
     }
 }