can someone tell me why when I insert into database this string 01-02-20070858430013, the result is -20070858430014
using (SqlConnection connection = new SqlConnection(con1))
        {
            connection.Open();
            for (int i = 0; i <= lb_dadosbrutos.Items.Count; i++)
            {
                using (SqlCommand command = new SqlCommand("INSERT INTO dbo.dados(Dados) VALUES(" + lb_dadosbrutos.Items[i] + ")", connection))
                {
                    //MessageBox.Show("INSERT INTO dbo.dados (Dados) VALUES (01-02-20070858430013)");// + range.Cells[i, 1].Value2.ToString() + ")");
                    command.ExecuteNonQuery();
                }
            }
        }
sry first stack question
Edit:
Tnks all, yes i missing the ' ', omg
 
     
    