查找

公告
· 17 hr 前

Free Hands-On Online Tutorials for New InterSystems IRIS Developers

Hello Community,

Great news for developers who have just started working with InterSystems IRIS! We have hands‑on interactive tutorials available via the Instruqt platform! These are perfect for getting up to speed quickly, playing in real environments, and building confidence with IRIS‑based development.

Here is the list of available tutorials:

Why these tutorials matter:

  • Real cloud‑based labs mean you can code, deploy and experiment without installing complex environments.
  • They cover critical architectures: full‑stack apps, REST + frontend, healthcare interoperability, AI/Vector Search.
  • They’re designed for new to IRIS programmers, helping you establish best‑practices in a safe (and fun) sandbox.

Next steps:

  1. Pick the tutorial that matches your interest (front‑end + REST, health/interop, AI chatbot, etc.).
  2. Jump in and go through the tasks step by step; you’ll get hands‑on experience.

Feel free to share your progress, ask questions, or even propose new tutorial topics you’d like to see.

Let’s dive in and start building with IRIS!

讨论 (0)1
登录或注册以继续
问题
· 19 hr 前

Using EnsLib.RecordMap.Service.FTPService and validation within the RecordMap

I am trying to add validation to a RecordMap, because the source of the data sent file sent us bad data within the file. So, I am using PATTERN to verify certain fields start with Numeric, and Alpha where applicable. When the EnsLib.RecordMap.Service.FTPService runs into an issue it doesn't seem like it continues onto the next record if the record does not meet the validation requirements. 

How can I tell EnsLib.RecordMap.Service.FTPService to log the error and continue onto the next record, so those records that fail are not processed?

1 条新评论
讨论 (1)2
登录或注册以继续
问题
· 19 hr 前

Regarding best practices for integration between different datasets and namespaces.

In some cases, it's necessary to manipulate data from one namespace to another. For example, a routine in the "N1" namespace needs data from the "N2" namespace. In legacy systems (using only globals), it's common to make the global universal, but what about persistent classes? Is this type of globalization also possible?

In the same context, how could I make a persistent class global for all namespaces? The only way I know is by putting it in %SYS. For example, to build a class from the "N1" namespace in the "N2" namespace, I need to use the pipe or the ZN function, but this somewhat reduces the productivity of the IDE (VS Code, Studio...), because the class doesn't exist in the namespace I'm working in, and this affects the autocomplete of methods, attributes, etc.

What would be the best practices for these use cases? Can I build this type of class in %SYS?

4 条新评论
讨论 (4)3
登录或注册以继续
公告
· 21 hr 前

Nos vemos en Madrid: InterSystems READY 2026 - una oportunidad para hablar de IA

Hola, Comunidad:

📆 El 19 de febrero tenéis una cita muy especial en el Espacio Covarrubias The One, en Madrid.

Llega InterSystems READY 2026. Una oportunidad de compartir conocimiento sobre IA generativa, analítica en tiempo real y conocer partners muy potentes del sector. Tendremos invitados muy especiales, muchas sorpresas y detalles que os iremos revelando.

¿Queréis saber más? Reservad vuestra plaza aquí https://bit.ly/43Gp8T9 y guardaos la fecha en vuestro calendario. 

Estad atentos...

讨论 (0)1
登录或注册以继续
问题
· 22 hr 前

Problem by using String Var in embedded SQL where criteria

Hallo, I am new on programming Object Script.

My problem: How can I use a String variable in embedded SQL?

The below example does not work by using: namevar with ' ' 

set namevar = 'Ali'

&sql(DECLARE C2 CURSOR FOR SELECT name INTO :name FROM person where name = 'namevar')

Only below will work: person where name = 'Ali' 

Thanks in advance

4 条新评论
讨论 (4)3
登录或注册以继续