C
Colin Robinson
Your know the ones, you have a table and it has Create,Read,Update and
Delete Stored procedures and the app always uses these to talk to the DB
eliminating dynamic sql in your apps.
Makes perfect sense when you have a table however when you have 500 tables
its not so clever (thats 2000 stored procs to maintain)
Shouldnt the framework and sql guys talk to each other and come up with a
single proc that accepts the CRUD as an argument to a single UpdateMyTable
proc for each table. Then Hey presto 500 tables = 500 procs
It would be nice if i didnt have to code it myself and the dataset wizard
just happened to offer this option in the next framework version!
Colin Robinson.
Delete Stored procedures and the app always uses these to talk to the DB
eliminating dynamic sql in your apps.
Makes perfect sense when you have a table however when you have 500 tables
its not so clever (thats 2000 stored procs to maintain)
Shouldnt the framework and sql guys talk to each other and come up with a
single proc that accepts the CRUD as an argument to a single UpdateMyTable
proc for each table. Then Hey presto 500 tables = 500 procs
It would be nice if i didnt have to code it myself and the dataset wizard
just happened to offer this option in the next framework version!
Colin Robinson.