发布新帖

Rechercher

公告
· 五月 1

[Video] Using Embedded Python in the BPL and DTL Editors

Hi, Community!

🐍Great news—you can now use Python to customize your productions and add custom code!

Using Embedded Python in the BPL and DTL Editors

In this video, see how you can use Python with ease in BPL business processes and DTL data transformations.

You can use custom code in the DTL or BPL Editor to:

  • Write conditional logic
  • Modify data formats
  • Perform calculations

...and import Python libraries to use in these fields.

Try it today!

讨论 (0)1
登录或注册以继续
公告
· 五月 1

Récapitulation de la communauté des développeurs, avril 2025

Bonjour et bienvenue à la récapitulation de la Communauté des développeurs d'avril 2025.
Statistiques générales
✓ Nouvelles publications 20 publiées l'avril :
 12 nouveaux articles
 8 nouvelles annonces
✓ Nouveaux membres 1 ayant rejoint l'avril
✓ Publications 1,153 publiées depuis le début
✓ Membres 167 ayant rejoint depuis le début
Meilleures publications
Présentation de l'adaptateur UDP
Par Corentin Blondeau
Bulk FHIR, étape par étape
Par Guillaume Rongier
Les meilleurs auteurs du mois
Articles
#InterSystems IRIS
L'API REST avec Swagger dans InterSystems IRIS
Par Guillaume Rongier
Contourner l'incompatibilité de scikit-learn 1.6.0 dans IRIS 2024.3 AutoML
Par Iryna Mykhailova
Vous rencontrez des difficultés pour connecter votre Visual Studio Code à votre instance IRIS via WebGateway ? Voici quelques conseils !
Par Iryna Mykhailova
Comment créer et intégrer JWT dans InterSystems IRIS
Par Lorenzo Scalese
L'utilisation de DocDB en SQL, quasiment
Par Iryna Mykhailova
Comment identifier les variables globales temporaires qui consomment de l'espace dans la base de données IRISTEMP
Par Sylvain Guilbaud
Sécurisation des interfaces HL7 avec des certificats SSL/TLS (X.509)
Par Sylvain Guilbaud
Présentation de l'adaptateur UDP
Par Corentin Blondeau
SQLAchemy-iris avec la dernière version du pilote Python
Par Lorenzo Scalese
 
#InterSystems IRIS for Health
 
Annonces
#InterSystems IRIS
 
#Communauté des développeurs officielle
 
#Summit
 
#Portail d'apprentissage
 
Avril, 2025Month at a GlanceInterSystems Developer Community
讨论 (0)1
登录或注册以继续
摘要
· 五月 1

Résumé de la communauté des développeurs d'InterSystems, Avril 2025

Bonjour, voici la newsletter de la communauté des développeurs de Avril 2025.
Statistiques générales
✓ Nouvelles publications 20 publiées le Avril :
 12 nouveaux articles
 8 nouvelles annonces
✓ Nouveaux membres 1 ayant rejoint le Avril
✓ Publications 1,153 publiées depuis le début
✓ Membres 167 ayant rejoint depuis le début
Meilleures publications
Bulk FHIR, étape par étape
Par Guillaume Rongier
Les meilleurs auteurs du mois
Articles
#InterSystems IRIS
L'API REST avec Swagger dans InterSystems IRIS
Par Guillaume Rongier
Contourner l'incompatibilité de scikit-learn 1.6.0 dans IRIS 2024.3 AutoML
Par Iryna Mykhailova
Vous rencontrez des difficultés pour connecter votre Visual Studio Code à votre instance IRIS via WebGateway ? Voici quelques conseils !
Par Iryna Mykhailova
Comment créer et intégrer JWT dans InterSystems IRIS
Par Lorenzo Scalese
L'utilisation de DocDB en SQL, quasiment
Par Iryna Mykhailova
Comment identifier les variables globales temporaires qui consomment de l'espace dans la base de données IRISTEMP
Par Sylvain Guilbaud
Sécurisation des interfaces HL7 avec des certificats SSL/TLS (X.509)
Par Sylvain Guilbaud
Présentation de l'adaptateur UDP
Par Corentin Blondeau
SQLAchemy-iris avec la dernière version du pilote Python
Par Lorenzo Scalese
#InterSystems IRIS for Health
Annonces
#InterSystems IRIS
#Communauté des développeurs officielle
#Summit
#Portail d'apprentissage
Avril, 2025Month at a GlanceInterSystems Developer Community
问题
· 五月 1

Best Practice for Existing ODBC Connection When System Becomes IRIS for HealthShare

Mirror Member

Hi ISC Experts,

I'm in the process of setting up InterSystems IRIS for HealthShare with database mirroring, and I’d appreciate some guidance around how to handle an existing ODBC connection in this new setup.

Scenario:

  • We currently have a system running IRIS for HealthShare that external systems connect to via ODBC (using a standard connection string with hostname and port).
  • We're now configuring mirroring on this system — it will become one of the mirror members (Primary/Backup).
  • The external system using ODBC will not be part of the mirror, but it needs to continue accessing the IRIS instance seamlessly during failover.

Questions:

  1. How should the existing ODBC connection be modified (if at all) to work properly with mirroring?
    • Can ODBC be configured with a mirror-aware connection string?
    • Or should we set up a Virtual IP (VIP) for the mirror and point the ODBC client to that and how would I make this mirror aware?
  2. What are the best practices to ensure high availability for ODBC clients during mirror failover?
  3. Are there specific considerations for HealthShare environments, especially with regard to externally connected systems (via ODBC) that are not mirror-aware?

Any official guidance, sample configurations, or insight from similar deployments would be greatly appreciated.

Thanks in advance!

Best regards,
Fraser

3 条新评论
讨论 (3)3
登录或注册以继续
问题
· 五月 1

Embedded Python query

Hi Guys,

How can I use this same objectscript principle in embedded python to get the value of each field in my loop? 

  s sql="SELECT ID, Name, Age FROM Sample.Person WHERE Age="_Myage    

     Set RS=##class(%ResultSet).%New()

    Set Ret=RS.Prepare(sql)

    Set Ret=RS.Execute()

    While RS.Next()

    {

         Set name=RS.GetData(2)

}

it should be similar to this example which lists the whole row but how can I get the value of each field or if I can use GetData?  

 

Thanks

2 条新评论
讨论 (2)1
登录或注册以继续