Can someone show me the simplest way of perform a parametrized SQL query using Classic ASP in VBscript?
A compilable example would be best.
|
Can someone show me the simplest way of perform a parametrized SQL query using Classic ASP in VBscript? A compilable example would be best. |
|||||
|
|
Use the adodb.command object.
I would also advise to use a custom db access object instead of using adodb directly. This allows you to build a nicer api, improves testability and add hooks for debuging/logging/profiling. Secondly you can add request scoped transactions with implicit rollback's on errors using the class_terminiate event. Oure db access object offers the following query api
|
|||||
|
|
|
I'm assuming you are referring to a parameterized SQL Query. If this is the case, then the VBScript code would look something like this:
UPDATE: You need to include the ADOVBS.inc file for the constants to be recognized. Here's a link: ADOVBS.inc |
|||||
|
|
Another option to including
Here is a list of some type libraries. |
|||||
|