How u convert this cfquery to TSQL?

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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....
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default Re: How u convert this cfquery to TSQL?

    For a simple query a stored procedure won't give you any performance benefit.
    OldCFer Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139