Exemplo n.º 1
0
        public int URegistration(Objects.User obj)
        {
            int           vcheck;
            SqlConnection con    = new SqlConnection(connectionString);
            string        VQuery = "Insert Into UserData(UserID,FirstName,LastName,Email,Address,Password,Country) " +
                                   "values (" + GetMaxID() + ",'" + obj.FirstName + "','" + obj.LastName + "','" + obj.Email + "','"
                                   + obj.Address + "','" + obj.Password + "','" + obj.Country + "')";
            SqlCommand cmd = new SqlCommand(VQuery, con);

            cmd.CommandType = CommandType.Text;
            try
            {
                con.Open();
                vcheck = cmd.ExecuteNonQuery();
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                con.Close();
            }
            return(vcheck);
        }
Exemplo n.º 2
0
        public int ULogin(Objects.User obj)
        {
            /*
             * int vcheck;
             * string Email = obj.Email;
             * string Password = obj.Password;
             * string vQuery = "select UserID from UserData where Email='" + obj.Email + "' and Password='******'";
             * con = new SqlConnection(connectionString);
             * SqlCommand cmd = new SqlCommand(vQuery, con);
             * try
             * {
             *  con.Open();
             *  vcheck = Convert.ToInt32(cmd.ExecuteScalar());
             * }
             * catch(Exception e)
             * {
             *  throw e;
             * }
             * finally
             * {
             *  con.Close();
             * }
             *
             */

            //cmd.CommandType = CommandType.Text;
            //return vcheck;

            int           vcheck;
            SqlConnection con    = new SqlConnection(connectionString);
            string        VQuery = "SELECT COUNT(*) from UserData where Email = '" + obj.Email + "' and Password = '******'";
            SqlCommand    cmd    = new SqlCommand(VQuery, con);

            try
            {
                con.Open();
                vcheck = Convert.ToInt32(cmd.ExecuteScalar().ToString());
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                con.Close();
            }
            return(vcheck);
        }