I'm trying to insert a file to a Access Database and it is impossible at all.
The 'ExecuteNonQuery' returns that 1 file has been inserted but in table there is no chages. Where will be the problem? Thanks in advance.
The database conection is ok and i can read data from it
Dim sql As String = "INSERT INTO Cierre (TIPO,CANTIDAD,FECHA,TIENDA,CAJA) VALUES ('A','3,45','16/05/2019 21:05:34','0','0')"
Conn.Open()
Dim cmd As OleDbCommand = New OleDbCommand(sql, Conn)
Dim i = cmd.ExecuteNonQuery()
Conn.Close()