INCLUSÃO SQLSERVER DATETIMEPICKER

SEPULTURA 10/08/2014 02:51:09
#440319
Olá estou a incluir por Parametros

cmd.Parameters.Add([Ô]@CLIE_DATA[Ô], SqlDbType.DateTime).Value = this.dtpClie_data.Value ;

ou assim

cmd.Parameters.Add([Ô]@CLIE_DATA[Ô], SqlDbType.DateTime).Value = Convert.ToDatetime(dtpClie_data.Value) ;

ambos não dão erro de sintase , mais ambos não passam no SQLSERVER

configurei como Data , Long ou custom . na Datepicker .

Preciso das conversões , de Datetime para String ...... String pra Datetime
TUNUSAT 10/08/2014 06:40:40
#440321
SEPULTURA,

Tente não fazer tudo na mesma linha, dimensione o parâmetro em uma linha e atribua o valor em um linha separada.

Acho que este exemplo pode te ajudar:

Using DateTime in a SqlParameter for Stored Procedure, format error
http://stackoverflow.com/questions/425870/using-datetime-in-a-sqlparameter-for-stored-procedure-format-error
static void Main(string[] args)
{
// Create the connection.
using (SqlConnection connection = new SqlConnection(@[Ô]Data Source=...[Ô]))
{
// Open the connection.
connection.Open();

// Create the command.
using (SqlCommand command = new SqlCommand([Ô]xsp_Test[Ô], connection))
{
// Set the command type.
command.CommandType = System.Data.CommandType.StoredProcedure;

// Add the parameter.
SqlParameter parameter = command.Parameters.Add([Ô]@dt[Ô], System.Data.SqlDbType.DateTime);

// Set the value.
parameter.Value = DateTime.Now;

// Make the call.
command.ExecuteNonQuery();
}
}
}


Ou este exemplo:

What is the correct format to input a date parameter in an Oracle database from c#
http://stackoverflow.com/questions/10485904/what-is-the-correct-format-to-input-a-date-parameter-in-an-oracle-database-from

DateTime dt = new DateTime(2012, 5, 7, 12, 23, 22, 0);
cmd.Parameters.Add(dt.ToString([Ô]dd-MMM-yyyy[Ô]), OracleDbType.Date).Value = dt;


Espero que ajude.

[][ô]s,
Tunusat.
SEPULTURA 12/08/2014 09:51:34
#440358
Oi

Para consulta

                   m.CLIE_DATA = Convert.ToDateTime(leitor[[Ô]Clie_data[Ô]].ToString());


Vazio

            dtpClie_data.Format = DateTimePickerFormat.Custom;
dtpClie_data.Value = DateTime.Now;

Inclusao e alteracao

                    cmd.Parameters.Add([Ô]@CLIE_DATA[Ô], SqlDbType.DateTime).Value = Convert.ToDateTime(dtpClie_data.Text);



Tópico encerrado , respostas não são mais permitidas