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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. stevebooth

    TOAD Debugger

    I'd recommend you join the YAHOO Toad group. They can probably help you with this problem.
  2. stevebooth

    Diff between Oracle 8i and Oracle 9i

    One thing that I found when moving from 8i to 9i was that 9i was pickier than 8i when it came to discrepancies between Package Specification and Body. In as much as it was my fault they weren't the same, it was hard to blame Oracle.
  3. stevebooth

    Passing data between forms??

    Update3.cfm: <cfoutput> <form action=&quot;update3.cfm&quot; method=&quot;post&quot;> <input type=&quot;hidden&quot; name=&quot;contactnum&quot; value=&quot;#form.contactnum#&quot;> <input type=&quot;hidden&quot; name=&quot;first_name&quot; value=&quot;#form.first_name#&quot;> <tr...
  4. stevebooth

    Checking if an array index IsDefined

    I ran into this problem myself today. The only solution that I've found is the following: <cfset x = ArrayNew(1)> <cfset x[1] = &quot;A&quot;> <cfset x[3] = &quot;C&quot;> <cfset x[4] = &quot;D&quot;> <cfset pos = 2> <cftry> <cfset Element_Exists = &quot;Yes&quot;> <cfset Var_Value =...
  5. stevebooth

    SQL Statement &quot;on the fly&quot;

    In general, I use a variable to hold the list of field names to be returned in the select statement. The list is comma delimited. I'd then loop through the list to display the heading. ListLen tells you how many columns. You can also set up a corresponding list of column labels. There used to be...
  6. stevebooth

    Get variable, minus first four characters

    Another answer: <cfset c_id = listrest(x,&quot;_&quot;>)
  7. stevebooth

    help inserting current date into db

    We need to know what database you're using in order to reply appropriately...
  8. stevebooth

    Passing data between forms??

    Data is transfered in the following basic ways: Through URL via a hyperlink. The Cold Fusion URLEncodedFormat function can be used to take care of special characters, etc. Clients see Through FORM variables, method=&quot;post&quot; action=&quot;cfpage&quot; Note that you will need to use a...

Part and Inventory Search

Back
Top