検索

記事
· 2025年10月16日 2m read

ユニットテストによる部分コードのカバレッジの例

私が先週リリースしたInterSystems Testing Managerの新しいバージョンでは、@Timothy Leavittの優れた
テストカバレッジツールが追加され、私は2025年度Developer Toolsコンテストに出品しました。

こちらは、IPMプロジェクトのユニットテストが、IPMリポジトリでソート順を上書きできると思われる機能をまだカバーしていないことを示すティザー的なスクリーンショットです。

ディスカッション (0)0
続けるにはログインするか新規登録を行ってください
お知らせ
· 2025年10月15日

[Video] The Road to AI in Healthcare

Hey Community,

Enjoy the new video on InterSystems Developers YouTube:

⏯ The Road to AI in Healthcare @ Ready 2025

The session highlighted advancements in InterSystems’ healthcare solutions, focusing on platforms like HealthShare and the new EHR system, IntelliCare. Through a creative and humorous storytelling format, the presentation emphasized the importance of trusted health data as a foundation for effective AI adoption in healthcare. A key message centered on the necessity of accurate data matching, particularly through the use of an Enterprise Master Person Index (EMPI). Demonstrations showed how InterSystems’ EMPI leverages machine learning, probabilistic algorithms, and referential data to resolve identity discrepancies and unify fragmented patient records. This capability supports more reliable AI outcomes and improved clinical decision-making. Ultimately, the session reinforced that meaningful data integration, not just data aggregation, is essential for realizing AI’s full potential in healthcare.

Presenters:
🗣 @Don Woodlock, Head of Healthcare Solutions, InterSystems
🗣 Sean Kennedy, Head of Product Management, HealthShare, InterSystems
🗣 @Alex MacLeod, Director Healthcare Solution Innovation, InterSystems
🗣 @Erica Song, Sales Engineer, InterSystems
🗣 @James Derrickson, Senior Product Manager, InterSystems
🗣 @Julie Smith, Senior Manager of Product Management, InterSystems
🗣 @Kristen Nemes, Product Manager, InterSystems
🗣 Varun Saxena, Product Manager, InterSystems
🗣 @Dimitri Fane, Director of Product Management, InterSystems
🗣 Jonathan Teich, MD, Chief Medical Officer and Director of Clinical Innovation
🗣 @Judy Charamand, UX Designer, InterSystems

Wondering what’s possible? Watch the video and subscribe for more examples!

ディスカッション (0)1
続けるにはログインするか新規登録を行ってください
質問
· 2025年10月15日

Why Does $c() Behave Differently on Different Systems?

Can someone help me understand what type of user error (?) is going on here please?

One one system, I write out a group of $c() values and get the expected results:

USER>for i=250:1:260 { write i," ", $c(i),! }
250 ú
251 û
252 ü
253 ý
254 þ
255 ÿ
256 Ā
257 ā
258 Ă
259 ă
260 Ą

USER>w $zv
IRIS for Windows (x86-64) 2023.1.4 (Build 580U) Fri Apr 19 2024 11:16:07 EDT
USER>

On another system, I get some unexpected results:

USER>for i=250:1:260 { write i," ",$c(i),! }
250 ú
251 û
252 ü
253 ý
254 þ
255 ÿ
256 Ā
257 Ä
258 Ä‚
259 ă
260 Ä„

USER>w $zv
IRIS for Windows (x86-64) 2025.1.1 (Build 308U) Thu Jul 10 2025 16:00:01 EDT
USER>

We've made a general connection between the good values being generated from IRIS hosted on Linux and the unexpected values being generated on IRIS for Windows, although IRIS on one Windows system generates the expected values (see 2nd run above).

4 Comments
ディスカッション (4)3
続けるにはログインするか新規登録を行ってください
記事
· 2025年10月15日 9m read

Introduction à IRIS pour les développeurs SQL et les administrateurs de bases de données

Vous êtes familier avec les bases de données SQL, mais vous ne connaissez pas IRIS ? Alors lisez la suite...

Il y a environ un an, j'ai rejoint InterSystems, et c'est ainsi que j'ai découvert IRIS.  J'utilise des bases de données depuis plus de 40 ans, la plupart du temps pour des fournisseurs de bases de données, et je pensais qu'IRIS serait similaire aux autres bases de données connues.  Cependant, j'ai été surpris de constater qu'IRIS est très différente par rapport aux autres bases de données, et souvent bien meilleure.  Avec mon premier article dans la communauté Dev, je vais présenter IRIS de manière générale aux personnes qui connaissent déjà d'autres bases de données telles qu'Oracle, SQL Server, Snowflake, PostgeSQL, etc.   J'espère vous rendre les choses plus claires et plus simples et vous faire gagner du temps pour vous lancer.

ディスカッション (0)1
続けるにはログインするか新規登録を行ってください
質問
· 2025年10月15日

How to get the correct USERPROFILE Windows environment variable in Caché ObjectScript please?

$System.Util.GetEnviron("USERPROFILE") returns "C:\WINDOWS\system32\config\systemprofile". I don't know what that is, but that folder doesn't even exist. The correct value which I need is "C:\Users\robert.steed", as seen via the Windows command line "set" command.

5 Comments
ディスカッション (5)2
続けるにはログインするか新規登録を行ってください