go to post Vitaliy Serdtsev · Nov 3, 2021 Try calling the ClearBuffers in the GLOBUFF system routine, e.g.: USER>d ClearBuffers^|"%SYS"|GLOBUFF() Removed 65303 blocks
go to post Vitaliy Serdtsev · Nov 3, 2021 Try Built-in Modal Groups E.g.: Class dc.test Extends %ZEN.Component.page { XData Contents [ XMLNamespace = "http://www.intersystems.com/zen" ] { <page xmlns="http://www.intersystems.com/zen"> <tablePane id="tp" sql="select 1 id, '2021-11-03' DT union select 2, '2022-01-24'"> <column colName="id"/> <column colName="DT" link="javascript:zenPage.modalGroupCalendar('#(%query.DT)#');"/> </tablePane> </page> } ClientMethod modalGroupCalendar(val) [ Language = javascript ] { var group = zenPage.createComponent('modalGroup'); group.setProperty('onaction','zenPage.calendarAction(group);'); group.show('Select a date:','calendar',val); } ClientMethod calendarAction(group) [ Language = javascript ] { alert("You selected: " + group.getValue()); // SaveOnServer(); ! } }
go to post Vitaliy Serdtsev · Nov 3, 2021 Try this: Class dc.test Extends %ZEN.Component.page { XData Contents [ XMLNamespace = "http://www.intersystems.com/zen" ] { <page xmlns="http://www.intersystems.com/zen"> <tablePane id="tp" sql="select 1 id, 'a' FollowUp union select 2,'b'"> <column colName="id"/> <column colName="FollowUp" header="FollowUp Comments" width="9%" style="text-align:left;" OnDrawCell="txtFollowUp"/> </tablePane> </page> } Method txtFollowUp( pTable As %ZEN.Component.tablePane, pName As %String, pSeed As %String) As %Status { &html<<textarea name="followup" rows="3" style=" width: 95%;" onchange="zenPage.saveFollowUp(this.value,#(%query("id"))#);">#(%query(pName))#</textarea>> Quit $$$OK } ClientMethod saveFollowUp( val, id) [ Language = javascript ] { zenAlert(val,' <-> ',id); } }
go to post Vitaliy Serdtsev · Nov 3, 2021 This functionality is available when working with ActiveX (however, ActiveX is not recommended for use in new applications): Using Callback Functionality SetOutput() PS: in the Caché distribution there was even a special library DelphiCallback.dll for Delphi, an example of working with which is in my blog.
go to post Vitaliy Serdtsev · Nov 2, 2021 I did a small test locally (for Caché). test.py: print("success") exit()From terminal: USER>w $zf(-1,"python C:\tmp\test.py") 0From Studio Output Window: w $zf(-1,"python C:\tmp\test.py") 0Make sure that your service for Caché/IRIS use an account with administrative rights: Windows User Accounts Changing the InterSystems Service Account
go to post Vitaliy Serdtsev · Nov 2, 2021 It should be like this (see Work with multiple sql statements): DELETE FROM TableName WHERE ID = 2 GO DELETE FROM TableName WHERE ID = 3 GO DELETE FROM TableName WHERE ID = 4 GO
go to post Vitaliy Serdtsev · Oct 27, 2021 In this case you can open the original article and take the code from there (and/or translate it with another service, for example Google translate)
go to post Vitaliy Serdtsev · Oct 26, 2021 See my old article on my blog: Examples of generating and sending Email using the Caché DBMS (this is machine translation)
go to post Vitaliy Serdtsev · Oct 15, 2021 ClassMethod testvalidator( class As %String, value As %String) As %Status { set validator = "(out){set out = ##class("_class_").IsValid("""_value_""")}" xecute (validator,.sc) write sc,! quit sc }
go to post Vitaliy Serdtsev · Oct 15, 2021 Use $CLASSMETHOD and you won't have such issues: USER>set sc=$CLASSMETHOD("%Numeric","IsValid","BLAH") or ClassMethod testvalidator(class As %String, value As %String) As %Status { set sc=$CLASSMETHOD(class,"IsValid",value) write sc,! quit sc }
go to post Vitaliy Serdtsev · Oct 15, 2021 Set object = ##class(%ZEN.proxyObject).%New() set object.city = "New York" set object.Target = "TEST" set object.Details = "TEST" set object.RefCode = "123" set object.Reason = "123TTTT" set string=object.%Serialize() ;write string,! set anotherObj=##class(%ZEN.proxyObject).%New() do anotherObj.%ZENDeserialize(string) write anotherObj.Reason ; ==> 123TTTT
go to post Vitaliy Serdtsev · Oct 11, 2021 codemode = code: ClassMethod AddWater( s, t = {$lb("",1,22,333,4444,55555,666666,7777777,88888888,999999999)}, r = "") As %String { f i=1:1:$l(s) s r=r_$li(t,$e(s,i)+1) q r }codemode = expression: ClassMethod AddWater( s, r = {"" s r="" f i=1:1:$l(s) s t=$e(s,i) s:t r=r_$tr($j(t,t)," ",t)}) As %String [ CodeMode = expression ] { r }Required mapping ISCDC.inc from CACHESYS: Include ISCDC Class dc.test [ Abstract ] { ClassMethod AddWater(s) As %String { f i=$l(s):-1:1 s t=$e(s,i),$e(s,i)=$$DC(t,t) q s } }
go to post Vitaliy Serdtsev · Oct 7, 2021 For more details, see the documentation on Caché, for example: Namespace tab of the Studio Workspace window (and not Project tab) And more (see screenshot)
go to post Vitaliy Serdtsev · Oct 7, 2021 Connecting to Remote Servers Installing a Development Environment Using Studio (Class Browser) Workspace -> Namespace
go to post Vitaliy Serdtsev · Oct 6, 2021 Those experienced with encryption systems for databases may have concerns about encryption having dire effects on performance, but, with Caché, these concerns are unfounded. Encryption and decryption have been optimized, and their effects are both deterministic and small for any Caché platform; in fact, there is no added time at all for writing to the database. Managed Key Encryption: Protecting Data on Disk InterSystems recommends using its encryption management tools: When built-in hardware instructions are available for encryption-related activities, these activities are considerably faster then when using software-based encryption. The encryption management tools use hardware instructions when they are available. The encryption management tools can use keys stored on a KMIP server. The encryption management tools can run in FIPS mode. About Encryption Management Operations High-Performance Encryption for Databases in Financial Services (PDF)
go to post Vitaliy Serdtsev · Oct 4, 2021 But in new Native API for IRIS there are no proxies, just class methods/functions are called from app and I think, it should be pretty the same as calling this methods/functions from terminal window. Introduction to the Native API Using .NET Reverse Proxy Objects The Native API allows you to create instances of ObjectScript classes on InterSystems IRIS and generate Object Gateway proxy objects for them at runtime. Your .NET application can use proxies to work with ObjectScript objects as easily as if they were native .NET objects.
go to post Vitaliy Serdtsev · Oct 4, 2021 Yes, most likely this is a feature of the API. Here's what I found about it in the "old" documentation: In some situations, caching may not be desirable. For example, if an object is opened with Concurrency Level 4 (Exclusive Lock), the lock will not be released until the next server call. To destroy the object immediately, you can call Close() with the optional useCache parameter set to false Closing Proxy Objects PS: by the way, for ActiveX, Factory.ForceSync() method serves the same purpose.
go to post Vitaliy Serdtsev · Sep 30, 2021 I did a test and that's what found out. It is assumed that the data has already been generated. COS Class dc.test Extends %Persistent { ClassMethod Checking(CardNo As %String) As %String { s tmp=..%OpenId(CardNo,4) q "test" } }If executed from the terminal, the lock is removed automatically immediately after the method is completed: USER>w ##class(dc.test).Checking("1") testC# // ... string json = iris.ClassMethodString("dc.test", "Checking", "1"); // here the lock is still present db.ReleaseIRISObjects(); // or iris.ReleaseAllLocks(); // here already more is no lock