go to post Robert Cemper · Sep 9, 2017 I think this should be the way to go: "New language translated to COS"And I'm sure it would be better than the ugly attempt to map COS into HTML as done in CSP
go to post Robert Cemper · Sep 8, 2017 it is a way to access a Cache method from .NET search online doc on .NET binding
go to post Robert Cemper · Sep 8, 2017 Maks I fully support your position.There are very few languages where you can run code written 40 yrs. ago with no modification !That's what counts for customers.You have other languages in parallel like MV or BASIC besides all the embedded things like &SQL(), &HTML(), &JS()..But with same reasoning you may ask why is Java, JavaScript or C, C# not changed?Because you got GO, Angular, ..... to have attractive extensions.COS has it's ZZ*, $ZZ* as extensions. ( ZZ* ! )Isn't this enough for thousands of developers that haven't asked for it nor have a need for it?
go to post Robert Cemper · Sep 7, 2017 $system.SQL.Shell() is bypassing ODBC Driver and talks directly to Caché Storagean external query tool expects to get a MAXLEN by definition of ODBC (ages back).So this is a matter of backward compatibility. Pls. check the grey hook left of ANSWER to confirm questions as doneThx.
go to post Robert Cemper · Sep 7, 2017 if you open BPL in Studio click here to switch to Class viewby program the code is found in class %Dictionary.XDataDefinitionProperty Data holds your XData as Streamhttp://docs.intersystems.com/latest/csp/documatic/%25CSP.Documatic.cls?P...to find the id you can useselect ID from %Dictionary.XDataDefinition where parent %startswith '<my class name>'
go to post Robert Cemper · Sep 7, 2017 pls. place this in a separate question to make it public to others
go to post Robert Cemper · Sep 7, 2017 see docshttp://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...
go to post Robert Cemper · Sep 6, 2017 Pls. click Accepted answer to confirm solution BTW: We appreciate feedback too ! Thanks !
go to post Robert Cemper · Sep 6, 2017 Hi Ben,Thanks for keeping this. I lost my collection.I remember so well how much fun we had making the icon for Hermes- DeepSee2 (does anyone remember there was a DeepSee1 ?)- HealthShare (getting the Aesculap snake in place)
go to post Robert Cemper · Sep 6, 2017 for this cases a possible solution could be %Stream.Global has a FindAt method that could give you a position of "\u00"[Find the first occurrence of target in the stream starting the search at position. ]http://docs.intersystems.com/latest/csp/documatic/%25CSP.Documatic.cls?P...But: if you are on the decoded stream all non printables are just single characters. No issue to cut it in piecesread your source stream in reasonable sized junksclean out what ever you needappend it to a temporary streamloop on source until you hit AtEnd conditionfinally replace your source either by "copyFromSteam" method [temp -> source]or replace source stream reference by temp stream referenceI guess the whole code is shorter than this description.I'd suggest not to touch the global under the source steam.
go to post Robert Cemper · Sep 6, 2017 The default for %String is MAXLEN=50 if you write in your definition %String(MAXLEN="") also in Method calls this should be enough. Query Methode(data1 As %Library.String(MAXLEN=""), data2 As %Library.String(MAXLEN=""), data3 As %Library.String(MAXLEN="")) As %Library.Query(CONTAINID = 1, ROWSPEC = "Result,Par2:%String") [ SqlProc ] and so on. Or you make you own data type inheriting %String overwriting Parameter MAXLEN="" Or just use %Library.VarString which makes just this MAXLEN=""http://docs.intersystems.com/latest/csp/documatic/%25CSP.Documatic.cls?P... Query Methode(data1 As %LibraryVar.String, data2 As %Library.VarString, data3 As %Library.VarString) As %Library.Query(CONTAINID = 1, ROWSPEC = "Result,Par2:%VarString") [ SqlProc ] and so on.
go to post Robert Cemper · Sep 6, 2017 of course it makes sense!but then you know which application is using it and can use the application's cleaning method / routine that takes care of all kind of dependencies:I remember well times when routines used to start with KILL ^CacheTemp*($JOB)I expected over time most applications are using PPG (^||myGlobal...) to avoid this. Or have a Clean-Up.
go to post Robert Cemper · Sep 6, 2017 It's the task of the application that uses ^CacheTempUser.* to take care of the housekeeping.I found no traces that it belongs to Caché System Management and Operation.
go to post Robert Cemper · Sep 5, 2017 So for a first check if this is the only issue just throw the full string into a $TRANSLATE$tr(jsonstring,$c(26)) and whipe it out.
go to post Robert Cemper · Sep 5, 2017 Last comment from Ken holds his final solution.use Class %Regex.Matcher it finds the control chars and can replace it .e.g. ""http://docs.intersystems.com/latest/csp/documatic/%25CSP.Documatic.cls?A...
go to post Robert Cemper · Sep 5, 2017 http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...there isn't much doc around.it's also used for "Find in files"a little bit in debugginghttp://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...
go to post Robert Cemper · Sep 4, 2017 Hi Evgeny,IF you can afford a short OFFLINE state:#5) dismount DB / copy of cache.dat to a fast local device / remount it move the copy in a secure place: #2, #1ELSE IF you have to remain online all the time:#3) on fast local device + move backup in secure place by #2,#1 NEVER #4) a fair chance for massive inconsitencyRobert[semper fidelis]
go to post Robert Cemper · Sep 4, 2017 double dot ..property is the shortcut for $this.property in instance methods.http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=...
go to post Robert Cemper · Sep 1, 2017 Great explanation of the issue. Thanks!So we have an nice example what Proleptic Gregorian Calendar used for $H calculation means: write $zd($zdh("1492-10-12",3,,,,,-600000)#7,11)Wed And that's definitely not correct as you demonstrated very precisely.But is common use in most programming and DB systems. But the date as such is questionable for 2 reasonsThere is a 5..6 hours time gap between Spain and the Caribean sea At the and of the middle age every kingdom and smaller typically dated their documentsby the years their actual king was in power. A common date as we know was not at all in place.So Oct.12 is most likely a date back calculated by historians hundred years later . So we should interpret this date as an common agreed convention that by luck was Friday.Thanks again for the contribution.