5
Answers

how to set alert based on sql column

Nitin Sharma

Nitin Sharma

9y
385
1
 i have a simple application in windows form and c# . user set some follow up date in system those date are store in sql database column datatyle is datetime. now in fature user lofin the application he/she will see a aleart form on based on those flooow up date, now i explain with example  today user set a follow up date as 12-Sep=2015,now when user login on 12th sep an aleart form show all the record which are having same date.   
Answers (5)
0
Mihai si atat

Mihai si atat

NA 21 0 19y
  Here are some useful links:

http://samples.gotdotnet.com/quickstart/aspplus/doc/webdataaccess.aspx.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnadonet/html/adon_wtaccessdb.asp.


/*for accesing a MS ACCESS Database*/
string strParameters = @Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\db\elearning.mdb;User Id=admin;Password=;
OleDbConnection oleConn = new OleDbConnection(strParameters);
OleDbCommand comGet = new OleDbCommand("SELECT * FROM Questions WHERE CourseID='" + CourseID + "'", oleConn);

oleConn.Open();
try
{
    OleDbDataReader dr = comGet.ExecuteReader(); //for reading the database
        while(dr.Read()) // returneaza false daca nu mai sunt inregistrari de citit
    {
          Response.Write(dr[0].ToString()); 
          int varsta = (int)dr["Varsta"]; 
    }
}
finally
{
    oleConn.Close();
}

/*for inserting data into a database*/
OleDbCommand com = new OleDbCommand("INSERT INTO Marks (SignInID, LessonID, PostedHomework) Values('" + SignInID + "','" + ID + "','1')", oleDbConn);

try
{
      oleDbConn.Open();
      com.ExecuteNonQuery();
}
catch(OleDbException)
{
           return "Could not mark the homework!!!";
}
finally
{
            oleDbConn.Close();
}



/* for accessing a Sql Server database */
string strParameters = @Data Source=Alex;Initial Catalog=elearning;User Id=sa;Password=parolasa;
SqlConnection sqlConn = new SqlConnection(strParameters);