opensubscriber
   Find in this group all groups
 
Unknown more information…

d : database@list.cfdeveloper.co.uk 26 September 2006 • 3:29PM -0400

Re: [CF-Database] String Concatenation
by Robertson-Ravo, Neil (RX)

REPLY TO AUTHOR
 
REPLY TO GROUP




Probably cause someone may want to add +44 etc, or maybe 0800 REVERSE ...






"This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions."
Visit our website at http://www.reedexpo.com

-----Original Message-----
From: Lee Fortnam
To: 'database programming'
Sent: Tue Sep 26 08:27:32 2006
Subject: RE: [CF-Database] String Concatenation

Thanks Guys,

Should have spotted that!!!

Nick, why would you use a character column in particular?

Lee

-----Original Message-----
From: database-bounces@list...
[mailto:database-bounces@list...] On Behalf Of Nick de Voil
Sent: 26 September 2006 08:13
To: database programming
Subject: Re: [CF-Database] String Concatenation

> I have a stored procedure where I am passing a var called @SMSCancel
> bigint
>
> I need to pass this along with some other text into a nvarchar field,
> at the moment I have the following in my SP:
>
> -- insert the sponsor message
> INSERT INTO
> APPM8_WLCSponsors
> (ClientID, SponsorText)
> VALUES
> (@LocationID, 'To stop alerts, text No to +' + @SMSCancel + '.')


String concatenation only works on strings, therefore you have to CONVERT or
CAST your integer to a string.

@LocationID, 'To stop alerts, text No to +' + CAST(@SMSCancel AS char(12)) +
'.'

FWIW I would normally define a phone number as a character column in the
database.

Nick



_______________________________________________

For details on ALL mailing lists and for joining or leaving lists, go to
http://list.cfdeveloper.co.uk/mailman/listinfo

--

>- cfdeveloper Hosting provided by www.cfmxhosting.co.uk -<
>- Lists hosted by www.Gradwell.com -<
>- CFdeveloper is run by Russ Michaels, feel free to volunteer your help
>-<

_______________________________________________

For details on ALL mailing lists and for joining or leaving lists, go to
http://list.cfdeveloper.co.uk/mailman/listinfo

--

>- cfdeveloper Hosting provided by www.cfmxhosting.co.uk -<
>- Lists hosted by www.Gradwell.com -<
>- CFdeveloper is run by Russ Michaels, feel free to volunteer your help -<
_______________________________________________

For details on ALL mailing lists and for joining or leaving lists, go to http://list.cfdeveloper.co.uk/mailman/listinfo

--
CFDeveloper Sponsors:-
>- cfdeveloper Hosting provided by www.cfmxhosting.co.uk -<
>- Lists hosted by www.Gradwell.com -<
>- CFdeveloper is run by Russ Michaels, feel free to volunteer your help -<

Bookmark with:

Delicious   Digg   reddit   Facebook   StumbleUpon

Related Messages

opensubscriber is not affiliated with the authors of this message nor responsible for its content.