Name can't be empty error?

2004-10-07 Thread Cedric Villat
This error has just popped up on a clients machine. They rebooted, and now when logging into their app, they get the following error: name can't be empty The error points to a query inside of a CFC. Though I noticed that if I put a right AFTER the arguments are defined but before the query, the

Re: Name can't be empty error?

2004-10-07 Thread Bryan Stevenson
250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com   - Original Message -   From: Cedric Villat   To: CF-Talk   Sent: Thursday, October 07, 2004 9:16 AM   Subject: Name can't be empty error?   This error has just popped up on a clients machine. They rebooted, a

Re: Name can't be empty error?

2004-10-07 Thread Raymond Camden
It normally means the value you are using for datasource is empty. Ie, cfquery name="foo" datasource="#dsn#" and dsn is an empty string. On Thu, 07 Oct 2004 12:16:57 -0400, Cedric Villat <[EMAIL PROTECTED]> wrote: > This error has just popped up on a clients machine. They rebooted, and now when

Re: Name can't be empty error?

2004-10-07 Thread Cedric Villat
Here is the function that the error is thrown in: <--- ERROR HAPPENS HERE EVEN IF I PUT A HERE. SELECT UserID AS ID, FirstName, LastName FROM #_application.config.TABLEPREFIX#SecurityUsers WHERE Username = AND Password = another query here. Only Username and a

Re: Name can't be empty error?

2004-10-07 Thread Cedric Villat
Bingo, that was it. Now to figure out *why* it became blank. Thanks Raymond. Cedric >It normally means the value you are using for datasource is empty. Ie, > >cfquery name="foo" datasource="#dsn#" > >and dsn is an empty string. > > >On Thu, 07 Oct 2004 12:16:57 -0400, Cedric Villat <[EMAIL PROTE