How to make a parametrized SQL Query on Classic ASP? - Stack Overflow
most recent 30 from stackoverflow.com
2009-11-29T09:41:04Z
http://stackoverflow.com/feeds/question/770419
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/770419/how-to-make-a-parametrized-sql-query-on-classic-asp
1
How to make a parametrized SQL Query on Classic ASP?
Pablo Santa Cruz
2009-04-20T22:55:41Z
2009-10-22T03:27:18Z
<p>Can someone show me the simplest way of perform a parametrized SQL query using Classic ASP in VBscript?</p>
<p>A compilable example would be best.</p>
http://stackoverflow.com/questions/770419/how-to-make-a-parametrized-sql-query-on-classic-asp/770439#770439
6
Answer by José Basilio for How to make a parametrized SQL Query on Classic ASP?
José Basilio
2009-04-20T23:07:58Z
2009-04-20T23:17:46Z
<p>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:</p>
<pre><code>Set adoCon = Server.CreateObject("ADODB.Connection")
adoCon.Open "connectionstring"
SET cmd = Server.CreateObject("ADODB.Command")
cmd.ActiveConnection = con
cmd.CommandType= adCmdStoredProc
cmd.CommandText = "GetCustomerByFirstName"
cmd.Parameters.Append cmd.CreateParameter("@FirstName",adVarchar,adParamInput,50,"John")
Set Rec = cmd.Execute()
While NOT Rec.EOF
'code to iterate through the recordset
Rec.MoveNext
End While
</code></pre>
<p><strong>UPDATE:</strong> You need to include the ADOVBS.inc file for the constants to be recognized.</p>
<p>Here's a link: <a href="http://www.asp101.com/articles/john/adovbs/adovbs.inc.txt" rel="nofollow">ADOVBS.inc</a></p>
http://stackoverflow.com/questions/770419/how-to-make-a-parametrized-sql-query-on-classic-asp/771332#771332
2
Answer by JoostMoesker for How to make a parametrized SQL Query on Classic ASP?
JoostMoesker
2009-04-21T06:48:14Z
2009-04-21T06:48:14Z
<p>Use the adodb.command object.</p>
<pre><code>with createobject("adodb.command")
.activeConnection = application("connectionstring")
.commandText = "select * from sometable where id=?"
set rs = .execute( ,array(123))
end with
</code></pre>
<p>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 </p>
<pre><code>call db.execute("update some_table set column=? where id=?", array(value, id))
set rs = db.fetch_rs("select * from some_table where id=?", array(id))
count = db.fetch_scalar("select count(*) from some_table where column > ?", array(value))
</code></pre>
http://stackoverflow.com/questions/770419/how-to-make-a-parametrized-sql-query-on-classic-asp/783353#783353
1
Answer by Mike Henry for How to make a parametrized SQL Query on Classic ASP?
Mike Henry
2009-04-23T20:15:46Z
2009-04-23T20:15:46Z
<p>Another option to including <code>adovbs.inc</code> is to add a reference to the following type library near the top of your ASP. Supposedly this has better performance than an include:</p>
<pre><code><!--METADATA TYPE="TypeLib" NAME="ADODB Type Library" UUID="00000205-0000-0010-8000-00AA006D2EA4" FILE="C:\Program Files\Common Files\System\ado\msado15.dll" VERSION="2.5" -->
</code></pre>
<p><a href="http://www.asp101.com/articles/john/typelibs/default.asp" rel="nofollow">Here</a> is a list of some type libraries.</p>