Oracle Error ora-01461: can bind a LONG value only for insert into a LONG column
If you are get the following Oracle error:
System.Data.OracleClient.OracleException: ora-01461: can bind a LONG value only for insert into a LONG column
Here's a solution:
It could be because you are trying to insert a string that is larger than the database column size. Check the length of your values and compare it to your column field size in the database.