Ask a Question related to Coldfusion Database Access, Design and Development.
-
roofusthedoofus #1
How u convert this cfquery to TSQL?
Does anyone know how to convert this cfquery to TSQL?
<cfquery name="test" datasource="abcinc">
select *
from profiles
where 0=0
<cfif isdefined('form.firstname') and form.firstname neq ''>and
firstname='form.firstname'</cfif>
</cfquery>
I'm having a tuff time creating the condition in the WHERE part to check if
the variable form.firstname exists first, and then to make sure its not null.
I'm trying to build a search form and then have the search criteria queried in
a MS SQL Server stored procedure directly for the sake of speed.
Appreciate any help:)
Roofus.
roofusthedoofus Guest
-
Converting cfquery to TSQL stored procedure
Does anyone know how to convert this cfquery to TSQL code. The goal is to have MS SQL 2000 run this query in a stored procedure for the sake of... -
How you convert this cfquery to TSQL?
Does anyone know how to convert this cfquery to TSQL? <cfquery name="test" datasource="abcinc"> select * from profiles where 0=0 <cfif... -
Using web services inside TSQL
If you want to call a web service from SQL Server, you need to use the sp_OA* procedures to call the "interop assemblies" for the .NET web service.... -
Is it possible to do this using TSQL instead of cursor ??
I have a Tagdataminutely table with columns TagKey, datetime, Value, Quality and Rev. TagKey is not a primary key in this table, in fact this table... -
IIF/Format equivalent in TSQL
Hi I have a client application that is currently connecting to MSAccess via ODBC. It uses the IIF and Format function in SQL-Statements. I want... -
kim il sung #2
Re: How u convert this cfquery to TSQL?
<cfif isdefined('form.firstname') and Trim(form.firstname) neq ''>
<cfquery name="test" datasource="abcinc">
select *
from profiles
where firstname='#Trim(form.firstname)#'
</cfquery>
</cfif>
cheers
kim
kim il sung Guest
-
OldCFer #3
Re: How u convert this cfquery to TSQL?
For a simple query a stored procedure won't give you any performance benefit.
OldCFer Guest



Reply With Quote

