Click here to Skip to main content
15,904,416 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
//How can i do to when i select one date < or = (select u_replica from e_industrial.dbo.e1) from this query, if true show date, if > dont show.


 private void btn_search_Click(object sender, EventArgs e)
        {
            
            SqlConnection conn = new SqlConnection("Data Source=....;Initial Catalog=Innux;Persist Security Info=True;");
            conn.Open();
            SqlDataAdapter SDA = new SqlDataAdapter("select dbo.Alteracoes.Data, dbo.Funcionarios.numero as no, dbo.Funcionarios.nome, DATEPART(hour, Falta) AS faltas, DATEPART(hour, Coluna2) AS  horasextra  from dbo.Alteracoes inner join dbo.Funcionarios on dbo.Alteracoes.IDFuncionario = dbo.Funcionarios.IDFuncionario inner join dbo.Departamentos on dbo.Funcionarios.IDDepartamento = dbo.Departamentos.IDDepartamento WHERE Data = '" + dateTimePicker1.Value.ToString("yyyy/MM/dd") + "'", conn);
            DataSet dt = new DataSet();
            



            SDA.Fill(dt, "dbo.Alteracoes.Data");
            dataGridView1.DataSource = dt.Tables["dbo.Alteracoes.Data"];
            conn.Close();
        }

        private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
        {

            //dateTimePicker1.MaxDate = DateTime.Now;
            SqlConnection conn = new SqlConnection("Data Source=.....;Initial Catalog=Innux;Persist Security Info=True;");
            conn.Open();
            SqlDataAdapter pickerMaxDate = new SqlDataAdapter("select u_replica from e_industrial.dbo.e1 ('"+  dateTimePicker1.Value.ToString("yyyy/MM/dd")+"')" , conn);

            String pickerMaxDateString = pickerMaxDate.ToString();
            DateTime dtMax = Convert.ToDateTime(pickerMaxDateString);

            dateTimePicker1.MaxDate = dtMax;

            
            conn.Close();
        }


What I have tried:

private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
      {

          //dateTimePicker1.MaxDate = DateTime.Now;
          SqlConnection conn = new SqlConnection("Data Source=.....;Initial Catalog=Innux;Persist Security Info=True;");
          conn.Open();
          SqlDataAdapter pickerMaxDate = new SqlDataAdapter("select u_replica from e_industrial.dbo.e1 ('"+  dateTimePicker1.Value.ToString("yyyy/MM/dd")+"')" , conn);

          String pickerMaxDateString = pickerMaxDate.ToString();
          DateTime dtMax = Convert.ToDateTime(pickerMaxDateString);

          dateTimePicker1.MaxDate = dtMax;


          conn.Close();
      }
Posted
Updated 9-Jan-18 6:45am
v3
Comments
Karthik_Mahalingam 8-Jan-18 23:50pm    
are you getting any error?

1 solution

Stop converting DateTime values to strings - and stop passing strings to SQL by concatenation.

Once a date is in DateTime format, keep it there, and pass it to SQL as a DateTime value via parameters (as you should for all values to pass to a database). Then let SQL stroe it in a DATE, DATETIME, or DATETIME2 column.
When you retrieve it, it comes back as a DateTime value and can be compared directly.

Or it could, if your SELECT statement was valid...
It should be
SQL
SELECT columnlist FROM MyTableName WHERE TheColumnIWantToCompare = ValueToCompareItWith
You are missing the WHERE and the column.

But in all seriousness, never concatenate strings to build a SQL command. It leaves you wide open to accidental or deliberate SQL Injection attack which can destroy your entire database. Use Parametrized queries instead.

When you concatenate strings, you cause problems because SQL receives commands like:
SQL
SELECT * FROM MyTable WHERE StreetAddress = 'Baker's Wood'
The quote the user added terminates the string as far as SQL is concerned and you get problems. But it could be worse. If I come along and type this instead: "x';DROP TABLE MyTable;--" Then SQL receives a very different command:
SQL
SELECT * FROM MyTable WHERE StreetAddress = 'x';DROP TABLE MyTable;--'
Which SQL sees as three separate commands:
SQL
SELECT * FROM MyTable WHERE StreetAddress = 'x';
A perfectly valid SELECT
SQL
DROP TABLE MyTable;
A perfectly valid "delete the table" command
SQL
--'
And everything else is a comment.
So it does: selects any matching rows, deletes the table from the DB, and ignores anything else.

So ALWAYS use parameterized queries! Or be prepared to restore your DB from backup frequently. You do take backups regularly, don't you?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900