 |
SoftTree Technologies
Technical Support Forums
|
|
Author |
Message |
anildas
Joined: 14 Nov 2007 Posts: 69 Country: United States |
|
RCS Keywords in Snippet |
|
I want to have a snippet with RCS keywords:
 |
 |
/*
* $File$
* $Revision$
* $Date$
* $Change$
* $Author$
*/
|
SQL Assistant strips the dollar signs and converts Date to the current date:
 |
 |
/*
* File
* Revision
* 1/13/2012
* Change
* Author
*/
|
Can I get SQL Assistant to insert my snippet without modfication? How?[/quote]
|
|
Fri Jan 13, 2012 6:24 pm |
|
 |
SysOp
Site Admin
Joined: 26 Nov 2006 Posts: 7948
|
|
|
|
$DATE$ is a macro in SQL Assistant which it replaces with the system date value. You would need to avoid using that name directly, but you can still concatenate it from pieces to escape the name match, something like this
 |
 |
$$
SELECT '/*
* $File$
* $Revision$
* $' + 'Date$
* $Change$
* $Author$
*/'
$$ |
|
|
Fri Jan 13, 2012 6:55 pm |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|