Re: What does this mean?

2002-08-03 Thread Jeffry Houser

  The error seems to be being returned from the JDBC driver, not ColdFusion.
  Did this it work in previous version of ColdFusion?

  When you use the dbvarname attribute, I didn't think you need to put the 
@ symbol in front of it.


At 10:48 AM 8/3/2002 -0500, you wrote:
>I searched the on-line docs and the MM site and I cannot find out why I
>am receiving this error.
>
>
>
>
>MERANT][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL Server
>Driver]Optional feature not implemented
>
>
>
>
>
>
>
>The Error Occurred in C:\Web\WME\voucher\step_2_Insert.cfm: line 51
>
>
>49 :   dbvarname="@VoucherCode" type="in" value="#Session.VoucherCode#">
>50 :   dbvarname="@Date_Registered" type="in" value="#Today#">
>51 :
>52 : 
>53 :
>
>
>
>
>
>
>
>Anyone else encounters this and can you tell me what the resolution is?
>I am using CFMX.
>
>
>
>
>
>Thanks,
>
>Bruce
>
>
>
>
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: What does this mean?

2002-08-03 Thread Bruce Sorge

This site works fine in CF5. I have just upgraded my dev environment to
MX. This is the only SP that has this issue. All of my other SP's are
working fine.

Thanks,

-Original Message-
From: Jeffry Houser [mailto:[EMAIL PROTECTED]] 
Sent: Saturday, August 03, 2002 10:14 AM
To: CF-Talk
Subject: Re: What does this mean?

  The error seems to be being returned from the JDBC driver, not
ColdFusion.
  Did this it work in previous version of ColdFusion?

  When you use the dbvarname attribute, I didn't think you need to put
the 
@ symbol in front of it.


At 10:48 AM 8/3/2002 -0500, you wrote:
>I searched the on-line docs and the MM site and I cannot find out why I
>am receiving this error.
>
>
>
>
>MERANT][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL Server
>Driver]Optional feature not implemented
>
>
>
>
>
>
>
>The Error Occurred in C:\Web\WME\voucher\step_2_Insert.cfm: line 51
>
>
>49 :   dbvarname="@VoucherCode" type="in" value="#Session.VoucherCode#">
>50 :   dbvarname="@Date_Registered" type="in" value="#Today#">
>51 :
>52 : 
>53 :
>
>
>
>
>
>
>
>Anyone else encounters this and can you tell me what the resolution is?
>I am using CFMX.
>
>
>
>
>
>Thanks,
>
>Bruce
>
>
>
>

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: What does this mean?

2002-08-27 Thread Jann VanOver

I'm guessing that the problem is in the stored proc and that you're doing
something not supported by the Merant JDBC drivers.

If you can post the actual stored procedure, maybe someone will see the
problem for you.  

On 8/3/02 8:48 AM, "Bruce Sorge" <[EMAIL PROTECTED]> wrote:

> I searched the on-line docs and the MM site and I cannot find out why I
> am receiving this error.
> 
> 
> 
> 
> MERANT][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL Server
> Driver]Optional feature not implemented
> 
> 
> 
> 
> 
> 
> 
> The Error Occurred in C:\Web\WME\voucher\step_2_Insert.cfm: line 51
> 
> 
> 49 :dbvarname="@VoucherCode" type="in" value="#Session.VoucherCode#">
> 50 :dbvarname="@Date_Registered" type="in" value="#Today#">
> 51 :
> 52 : 
> 53 : 
> 
> 
> 
> 
> 
> 
> 
> Anyone else encounters this and can you tell me what the resolution is?
> I am using CFMX.
> 
> 
> 
> 
> 
> Thanks,
> 
> Bruce
> 
> 
> 
> 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: What does this mean?

2002-08-27 Thread James Ang

Change:


To:


The MS SQL Server drivers that ships with CF is pretty brain dead for
passing date/time values via cfprocparam and cfqueryparam. Basically any
date/time types other than cf_sql_timestamp will crap out.


James Ang
Senior Programmer
MedSeek, Inc.
[EMAIL PROTECTED]



-Original Message-
From: Jann VanOver [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, August 27, 2002 9:51 AM
To: CF-Talk
Subject: Re: What does this mean?


I'm guessing that the problem is in the stored proc and that you're
doing
something not supported by the Merant JDBC drivers.

If you can post the actual stored procedure, maybe someone will see the
problem for you.  

On 8/3/02 8:48 AM, "Bruce Sorge" <[EMAIL PROTECTED]> wrote:

> I searched the on-line docs and the MM site and I cannot find out why
I
> am receiving this error.
> 
> 
> 
> 
> MERANT][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL Server
> Driver]Optional feature not implemented
> 
> 
> 
> 
> 
> 
> 
> The Error Occurred in C:\Web\WME\voucher\step_2_Insert.cfm: line 51
> 
> 
> 49 :dbvarname="@VoucherCode" type="in" value="#Session.VoucherCode#">
> 50 :dbvarname="@Date_Registered" type="in" value="#Today#">
> 51 :
> 52 : 
> 53 : 
> 
> 
> 
> 
> 
> 
> 
> Anyone else encounters this and can you tell me what the resolution
is?
> I am using CFMX.
> 
> 
> 
> 
> 
> Thanks,
> 
> Bruce
> 
> 
> 
> 

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: What does this mean?

2002-06-20 Thread Bryan Stevenson

Are you setting the variable name as a  random number or the variable value?  It looks 
like you're
using characters in the variable name that are not allowed.

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com

- Original Message -
From: "Wallick, Mike" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, June 20, 2002 2:51 PM
Subject: What does this mean?


> I am setting a client variable with a random number ( RandRange(0,
> 9) ) and I get this:
>
> CFTempOnlyForSetVariableNeverUseThisNameInYourCFMLCode1223335654321
>
> What the hell does that mean?
>
>
> Mike Wallick
> * Web Application Developer
> *  
> [EMAIL PROTECTED]
> * 651.628.5377
> *   http://www.securecomputing.com/
>
> 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: What does this mean?

2002-06-20 Thread S . Isaac Dealey

> I am setting a client variable with a random number (
> RandRange(0,
> 9) ) and I get this:

> CFTempOnlyForSetVariableNeverUseThisNameInYourCFMLCode1223
> 335654321

> What the hell does that mean?

This error message is intended to indicate that the CF Server doesn't like
the name of your variable... Although there have been cases where I've
changed the variable name and still gotten the message... but the intent is
basically the same as a reserved word. You _should_ be able to change your
client variable name to eliminate this error.

Isaac

www.turnkey.to
954-776-0046

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: What does this mean?

2002-06-20 Thread Dave Watts

> I am setting a client variable with a random number ( RandRange(0,
> 9) ) and I get this:
>  
> CFTempOnlyForSetVariableNeverUseThisNameInYourCFMLCode12233344
> 445654321
>  
> What the hell does that mean?

I believe that CF uses this name internally when it creates a new variable.
I've most often seen it when a CFPARAM tag causes an error. You can also see
it occasionally (and briefly) if you use the interactive debugger.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: what does this mean...

2001-04-24 Thread Toby Tremayne

it usually means that the template referred to in the error is empty.  The
Cold Fusion Server won't allow zero byte files - put something in it, even
if it doesn't do anything.


Toby Tremayne
Code Poet and Zen Master of the Heavy Sleep
Show Ads Interactive
359 Plummer St
Port Melbourne
VIC 3207
P +61 3 9245 1247
F +61 3 9646 9814
ICQ UIN  13107913

-Original Message-
From: Jay Patton [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 24 April 2001 9:01 AM
To: CF-Talk
Subject: what does this mean...


Error Diagnostic Information
Just in time compilation error

unknown parser error

The last successfully parsed CFML construct was the CFML template beginning
occupying document position (1:1) to (1:1).

The specific sequence of files included or processed is:
D:\64.224.42.213\PHOTOGRAPHS\INDEX.CFM
  D:\64.224.42.213\PHOTOGRAPHS\..\INCLUDES\FOOTER.CFM  CFInclude



Jay Patton
Web Design / Application Design
Web Pro USA
p. 406.549.3337 ext. 203
p. 1.888.5WEBPRO ext. 203
e. [EMAIL PROTECTED]
url. www.webpro-usa.com
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists