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 Mike Lewis 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. dasniper

    Compiling

    THanks! That's exactly where it was!
  2. dasniper

    Compiling

    Oh, in my Web Contianer's lib directory. I'm trying to convert to JRun 3.1, so it should be in /opt/jrun31/lib? Looking in /opt/jrun31/lib, there's a bunch of .jar files in there. KNow which one javax is in? Or should I just go extracting them to find it?
  3. dasniper

    Compiling

    I'm taking over the JSP maintenance for someone who no longer works at my company, and I need to re-compile some java files. They seem to be simple java files that extend HttpRequest, but when I try and compile them with javac, it complains that it can't find javax.servlet. Isn't javax a...
  4. dasniper

    Bulk Insert

    Yep. I used the first one and it works great.
  5. dasniper

    Bulk Insert

    I have a textarea on a form that I want to be able to let people put a comma seperated list into, then have CF parse the input and insert all the values into a database. I'm expecting data like: Site Code,Site Name <return> and then I would put it into a database of ID (generated by...
  6. dasniper

    CFMail Question

    I'm trying to write a CFMail that will email us information about a user in the database. Some fields in the database are optional, and may or may not exist. I'm wondering what the best way to do this in CFMail is. I have a query that gets information from the database: <cfquery...
  7. dasniper

    Does &lt;cfscript&gt; improve performance setting application.cfm variables?

    I dunno if CFSCRIPT executes faster or not. It does offer some things that regular CFML doesn't, like do while loops, but I haven't heard anything about executing faster. Are you setting these values in Application.cfm, or are you setting them once and then re-checking to see if they're still...
  8. dasniper

    Client Vars

    Thanks for the help, GunJack!
  9. dasniper

    Client Vars

    Thanks GunJack, it was helpful. What I was thinking of though was a way to personalize the site for the visitor. If a user comes to the site, then the app sees if they have a cookie, with CFID in it. If so, then the app knows that they were here before. Now, can I link that CFID to a user...
  10. dasniper

    Client Vars

    I'm thinking of moving my application to use CLient vars. I know you can specify them into a database using <cfapplication clientmanagement=&quot;Yes&quot; datasource=&quot;DSN&quot;> But, how do I get them to work? Is it as easy as looking for the CFID, and then relegating that CFID to a...
  11. dasniper

    handling file attachment with CFCONTENT - help

    Maybe use #URLEncodedFormat(<name>)#
  12. dasniper

    View Source

    You can't encrypt HTML, but you can encrpyt Cold Fusion code. From the Cold Fusion User Guide: You can use the command-line utility cfencode to encode any ColdFusion application template. By default, the utility is installed in the /cfusion/bin directory. It is especially useful for securing...
  13. dasniper

    Dynamic SQL

    When I do that, it comes out: ID, Title, State, PurchaseWindow, JobFunction, ID, Title, State, PurchaseWindow, JobFunction, ID, Title, State, PurchaseWindow, JobFunction, for the number of records in the CFOUTPUT
  14. dasniper

    Dynamic SQL

    I'm writing a page that will go to the database and grab the fields the user wants and show them. I have the part where ColdFusion makes the Dynamic SQL statement absed on the user's preference, but I can't figure out how to actually display the results from the query. I think I have to somehow...
  15. dasniper

    PL/SQL procedures

    Both the Master and slave Oracle databases are on Solaris. What's the utility that updates a snapshot as soon as it's needed. I wouldn't need that functionality, because I don't want to propogate changes immediately (because we're propogating changes from a QA environment to Production), but...
  16. dasniper

    PL/SQL procedures

    I wouldn't know how to do that. How do you get to essentially the Oracle commandline from a webserver? Perl procedure maybe? I did see somewhere on Oracle's site something about making a PSP page, but that seems to require Oracle WebDB gateway, which I'm sure 1)we don't have and 2)we don't want.
  17. dasniper

    PL/SQL procedures

    I want to make Oracle execute the DBMS_REFRESH package, without having to expose my users to SQL*Plus. Is there a way I can either package the DBMS_REFRESH command into a stored procedure, or some other packaging, like an executable? Ideally, I'd like to make it so users can just click on a...
  18. dasniper

    Split database to test and QA

    I tried to create a new instance and wound up trashing the original control files (because Orcalse said to use the REUSE keyword)
  19. dasniper

    About frames in HTML

    Depends on whether you want it to be a fixed size or a relative size. If you specify number of pixels, then it will be that number of pixels, regardless of what the monitor setting is. If you set it for a total of 800 pixels wide, but the client only has 640, then you're gonna get scrollbars...
  20. dasniper

    Split database to test and QA

    Thanks to everyone who responded. It turns out, it helps if your tablespace is not out of room. After I turned auto-extend on for the tablespace, the tables imported without a problem.

Part and Inventory Search

Back
Top