I have created generic insert code for database insert in C# (for datatype like text date number etc not for all datatypes)
now I m planning to write generic insert stored procedure in oracle
My question is that “is there anything that we can do with programming languages like C# or JAVA that we cant do with stored procedures for generic insert statement”
also please suggest if anybody has already done that.
I have created generic insert code for database insert in C# (for datatype like
Share
Please stop. This is a solved problem. There’s plenty of tools available that will do what you want and much more, and in a more elegant way.
For example, have a look at ORM tools like (N)Hibernate or Entity Framework, there are many others. There are also more light-weight options such as Simple.Data, Massive, dapper-dot-net, …