Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
Pinto
Aged Yak Warrior
590 Posts |
Posted - 2008-05-13 : 06:30:18
|
| I am trying to use COALESC in this statement and am getting syntax errorsDim PropFullAdd As String = "Property Add : " + COALESCE(Me.Reg_PropAdd1TextBox.Text,"N/A") + ", " + COALESCE(Me.Reg_PropAdd2TextBox.Text,"") + ", " + COALESCE(Me.Reg_PropAdd3TextBox.Text,"") + ", " + COALESCE(Me.Reg_PropAdd4TextBox.Text,"") + ", " + COALSECE(Me.Reg_PropPcodeTextBox.Text,"") |
|
|
harsh_athalye
Master Smack Fu Yak Hacker
5581 Posts |
Posted - 2008-05-13 : 06:33:36
|
| Coalesce() is SQL Server specific function. It seems that you are using it inside your VB code.Harsh AthalyeIndia."The IMPOSSIBLE is often UNTRIED" |
 |
|
|
Pinto
Aged Yak Warrior
590 Posts |
Posted - 2008-05-13 : 06:35:41
|
That's true - what a fool I am :-( Sorry |
 |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-05-13 : 06:36:43
|
quote: Originally posted by Pinto That's true - what a fool I am :-( Sorry
No worries. It happens to everyone |
 |
|
|
|
|
|