The field is too small to accept the amount of data you tried to add. Try to insert or paste less data

0

I'm using Access, and I have already checked the size of all fields and format also directly from the bank and also in vb.net itself.

"insert into aplicacao (codigo, convenio, descricao , valconv, ativo, usuario, maquina, data_registro, flag)
VALUES
(@codigo, @convenio, @descricao , @valconv, @ativo, @usuario, @maquina, @data_registro, @flag)"
    
asked by anonymous 14.06.2016 / 20:09

1 answer

0

Is this code field auto increment? If it is, it is not necessary to enter it in the insert. If it is not, it is possibly passing a value of 255 characters to a field in Access that only has 100 characters. Abs

    
06.07.2016 / 13:19