Command line vs. Application

2001-09-04 Thread Kim Green
I have a script that creates outputfile based on the rows returned from a select statement. I run the script from the command line, and the outputfile gets created. But, no file is created when I run the script from an application. Generally speaking, what kinds of things would cause this? Kim

Re: Command line vs. Application

2001-09-04 Thread victor
Have you checked the permission, could it be your Application being run as somebody having no permission to write to the files you are trying to write to. or if you happens to make use of shell command within your script, the PATH variable could be missing from your application. Hope this help