Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rockraines

  1. rockraines

    Link in a cfgrid

    Here is an example I found on www.cfform.com so I hope it helps. I was able to integrate it into my code and make it work. <cfif isDefined("url.user_id")> <cfoutput> <p>The selected userid is: #url.user_id#</p> </cfoutput> </cfif> <cfscript> myData = queryNew("id,name")...
  2. rockraines

    How can I check if column exists?

    Here is a piece of code that will allow you to specify a column that you are looking for and tell you all the tables that the column appers in. CREATE PROCEDURE [spColumnsInTableNew] @columnName varchar(50) AS select sc.name as ColumnName, so.name as TableName from syscolumns as SC inner join...

Part and Inventory Search

Back
Top