Search

Clear filter
Article
Gevorg Arutiunian · Oct 18, 2018

Pass ? parameters to %ZEN.Auxiliary.jsonSQLProvider

This code snippet uses %ZEN.Auxiliary.jsonSQLProvider. The namespace and string of SQL can be edited for different situations. The class method "test" runs the code: Class
Question
Andy Stobirski · Feb 12, 2022

Encoding XML carriage return / line feed

() set item.Notes = "< > &" _$c(10)_$c(13)_ "TEST" #dim tWriter as %XML.Writer set tWriter=##class(%XML.Writer).%New() set tWriter.Indent=4 do tWriter.OutputToFile
Announcement
Evgeny Shvarov · Sep 14, 2020

Technology Bonuses for the InterSystems Full Stack Contest

API Usage InterSystems JDBC Usage Unit Testing ZPM Package deployment Docker container usage See the details below. InterSystems IRIS REST API usage - 1 point You get
Question
Jordan Everett · Mar 30, 2023

Intersystems Environment Requiring Values in Parameters

an hour later in troubleshooting I found out that it needed to be a syntax change. My method has three parameters to it. Examples below: This is how I was calling it in the test
Article
Eduard Lebedyuk · Jan 13, 2020

Difference between while

: 13 i: 10, x: 14 ... This also means that For is slightly faster than while, always. Not necessarily set CNT=10e7 write "for test",! set z1 = $zh for i=1:1:CNT
Question
Arpitha Ramakrishnaiah · May 11, 2017

Compare and update two directories\namespaces for class files

to TEST, the class will be deleted from TEST. - If the two directories should have the same classes, you could use class mapping to point the two namespaces to the same code base
Question
Gevorg Arutiunian · Aug 23, 2018

Problem with generic classes using Java Gateway

the general methods I need. I'm talking about the test2 method from the class test. How can I import the java method that returns a generic? ``` public class Generic
Question
Doug Strzalko · Jun 30, 2023

Check repeating segments in a rule for value

. Sample message: ORC|NW|5139|||||||20230620161500|78068^TEST^TOM^^||43865^TEST^PHYSICIAN^^|1259^11800004RQD|1|124128|0137^GUIDE CATH|0137^GUIDE CATH|-1||1259^CV CATH/EP||619^PERP
Announcement
Andreas Dieckow · Jun 28, 2019

InterSystems IRIS Adoption - Invitation

conversion field test program. This program will be active until the end of July and provides you with early access for testing and experiencing your move from C/E to InterSystems IRIS
Question
David Sterngast · Apr 4, 2021

$zf call out to Window DIR command not working when running concurrent process

(%File).NormalizeDirectory(SDIR)),$$$quote(FILE))) } /// d ##class(dc.test).test() ClassMethod test() { s N=4 s queue=$system.WorkMgr.Initialize(,.sc,N) f i=1:1:N d
Question
Khalid Saleem · Feb 5, 2018

Determine write-access to a directory

for write on the file with timeout zero if it fails $TEST is 0 (false)http://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=GIOD_rmsseqfiles corrected:Set file
Article
Jose-Tomas Salvador · Dec 20, 2018

Just for Fun. John Conway's Game of Life

are! Here you have a link to the class that simulate the Game of Life (OPNLib.Game.ConwayLifeGame). Just load, compile it and execute the Test() method from your terminal and you'll see
Announcement
Pete Greskoff · Jun 25, 2019

June 25, 2019 – Advisory: Memory Leak in InterSystems IRIS

is an example to demonstrate the defect:test // CDS3148 test set (var1,var2,var3)=0 do sub(var1,.var2,var3) quitsub(arg1,args…) quit USER>for i=1:1:1000 { do ^test
Announcement
Jamie Kantor · Jun 3, 2021

Beta Testers wanted for our new HealthShare Patient Index Technical Specialist Certification Exam 

you to beta test the exam. Exam title: HealthShare Patient Index Technical Specialist Exam candidate: An IT implementation professional who: has 6-12 months experience
Question
Robert Shoults · Jul 27, 2021

How do I pass an array by reference and get back all modifications to the array (including subscript additions

it will behave the way I want it to? What's the definition of mytag? Is it using ByRef? If not, you'll want to add it. ByRef is flavor text. Unable to reproduce. Here's my test