go to post Alok Saldanha · Nov 21, 2016 Glad I was able to help... I think $CHAR with argument > 255 only works on unicode instances. Were you able to paste Hebrew letters directly into the string in Cache studio? I don't fully understand how 8 bit instances work.
go to post Alok Saldanha · Nov 21, 2016 Have you tried the %Stream.FileCharacter class? For example, the following should create a file that contains "Hello Lambda!" but with the unicode character for lambda:ClassMethod WriteUTF8(){ Set stream=##class(%Stream.FileCharacter).%New() Set sc=stream.LinkToFile("c:\tmp\lambda.txt") Do stream.TranslateTableSet("UTF8") Do stream.Write("Hello " _ $CHAR(955) _ "!") Do stream.%Save()}Though I am not sure how you can create unicode characters in an 8 bit cache installation.
go to post Alok Saldanha · Nov 17, 2016 The "whole chapter of documentation" link is broken.... It should probably be the following link (which I notice you mention later on...):http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...
go to post Alok Saldanha · Nov 17, 2016 Changing databases from read-only to read-write is described here:https://community.intersystems.com/post/database-configurationIt can be done either in management portal or via cache object script.
go to post Alok Saldanha · Nov 10, 2016 I am having trouble understanding this example in terms of the documentation for open:http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...What does the "QR" mean here? According to the docbook, the second argument to open should be in parenthesis, why that not necessary here?Answer:Both the "QR" and "|PIPES|" string are documented here:http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...