Quick & Easy ADO.NET Speed Improvements

My blog has moved.
You can view this post at the following address:
http://www.osherove.com/blog/2003/6/27/quick-amp-easy-adonet-speed-improvements.html
Published Friday, June 27, 2003 11:04 PM by RoyOsherove
Filed under:

Comments

Saturday, June 28, 2003 12:07 PM by Dave Burke

# re: Quick & Easy ADO.NET Speed Improvements

Good tip on the EnforceConstants = false tip! Thanks!
Sunday, June 29, 2003 3:29 PM by Byron

# re: Quick & Easy ADO.NET Speed Improvements

I'm not sure what you mean by creating a 'Dataset in code', can you enlighten me? Are you refering to typed Datasets as opposed to non-typed Datasets? I use the later since I prefer "soft-coding" over "hard-coding".
Monday, June 30, 2003 8:39 PM by Roy Osherove

# re: Quick & Easy ADO.NET Speed Improvements

Byron: I'm not referring to Typed Datasets, I'm referring to the actual code lines to the DataTable Collection of the dataset, instead of specifying tableName for the dataadapter, and letting it automatically create a table by that name if it does not exist..