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.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 WRITETEXT not working...

Author  Topic 

eddyo
Starting Member

6 Posts

Posted - 2001-06-26 : 10:15:15
Hi,

I haven't used writetext before today. The statements below work properly in the Query Analyzer. But, they don't work from Cold Fusion page. Any ideas why?

DECLARE @descrip binary(16)
SELECT @descrip = TEXTPTR(description)
FROM items
WHERE itemnum = 11111
WRITETEXT items.description @descrip 'this is the new description'

No errors are generated and the Cold Fusion template completes successfully. But, the data does not get modified.


   

- Advertisement -