hola a todos,
estoy teniendo el siguiente error al momento de insertar y realmente no entiendo porque. Alguien me pudiera indicar que esta pasando.
Error String or binary data would be truncated.
The statement has been terminated.)
Aqui esta el codigo que estoy usando.
insString = "INSERT INTO tbl_historico_seguimiento(auditoria, face, instruccion, medida, codigo, cod_compania, tipo_calificacion, dias_seguimiento,dia_notificacion, fecha_notificacion, notificado,estado, fecha_correccion,vencio_ayer) VALUES('" & auditoria2 & "','" & face2 & "', '" & instruccion2 & "', '" & medida2 & "', '" & codigo2 & "', '" & cod_compania2 & "', '" & tipo_calificacion2 & "', '" & i2 & "', '" & i2 & "', '" & fecha_notificacion2 & "', '" & notificado2 & "', '" & estado2 & "', '" & fecha_correcion2 & "','0')"
Dim insCon As New SqlConnection ("server=localhost;uid=sa;pwd=admin;database=csnet ")
insCon.Open()
insCmd = New SqlCommand(insString, insCon)
insCmd.ExecuteNonQuery()
insCon.Close()
gracias