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 SkipVought 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. bjkersey

    Anyone use ODBC Scalar Functions??

    The following worked for me: <HTML> <HEAD> <TITLE>Retrieving Employee Data Based on Criteia from Form</TITLE> </HEAD> <cfset username = 'B'> <BODY> <CFQUERY NAME=&quot;GetEmployees&quot; DATASOURCE=&quot;ActionItems&quot;> SELECT userID, userName, fullName, email, password FROM users...
  2. bjkersey

    ISAM?

    Anyone out there used CF with ISAM? If so: 1. What ODBC driver did you use? 2. Connect issues? 3. Speed? Thanks Bill Kersey
  3. bjkersey

    excluding query results?

    I just tried this on my database and it worked! SELECT emplid, first_name_srch,last_name_srch FROM empl_personal_data WHERE (last_name_srch NOT LIKE 'ABBOTT') AND (first_name_srch LIKE '%B%' OR last_name_srch LIKE '%B%') ORDER BY Last_Name_srch I know because the first time I did SELECT...
  4. bjkersey

    fusebox: calling javascript from included file

    My JavaScript Unleashed book has: You can give focus to a window in two ways: 1. Indirectly, by giving focus to an object in the window example myWindow.document.myForm.myInput.focus(); 2. Directly, by giving focus to the window example myWindow.focus() Hope this is of some help. Bill

Part and Inventory Search

Back
Top