logo

why Parameterizing reduces SQL preparation time

Parameterizing reduces SQL preparation time. Data variable information is bound to the database variable. The command object algorithm considers, such things as, is the variable value a NULL value, are there single quotes in strings, what is the precision of numeric types, and inserting of special tokens for dates dependant on the database type. If you do not use parameterizing of fields to the command object, you will need to consider special formating of data bound to the database field[Learn More ...]
&Links