New post

Find

Question
· Dec 11, 2024

Listing CONNECTION parameter of tables extending %Library.Persistent

I need to do an audit of Linked tables which are using a specific SQL Gateway connection, and there are many.

This is defined by the parameter CONNECTION contained within the table class which extends Extends %Library.Persistent

Is parameter exposed within a table somewhere?

1 Comment
Discussion (1)1
Log in or sign up to continue
Announcement
· Dec 11, 2024

Global Masters - l'intégration avec DC, Open Exchange et Ideas Portal est de retour !

Salut la Communauté !

L'intégration entre Global Masters, la Communauté des Développeurs, Open Exchange et le Portail d'Idées a maintenant été restaurée !

Les points devraient maintenant être mis à jour pour toutes les contributions effectuées pendant la période d'indisponibilité de Global Masters. Veuillez noter que nous avons apporté plusieurs ajustements au système de récompenses, nous annoncerons les changements prochainement. 

Un bug affectant les badges pour le nombre de vues a été détecté, nous avons donc dû mettre à jour manuellement les points pour certains d'entre vous. Si vous avez des questions sur vos points ou si vous remarquez des divergences, n'hésitez pas à nous contacter.

 

Vous n'êtes pas encore membre de Global Masters ? Commencez à gagner des points dès aujourd'hui !

Rejoignez la plateforme de gamification Global Masters pour les développeurs et gagnez automatiquement des points et des badges pour vos contributions à la Communauté des Développeurs d'InterSystems, à Open Exchange et au Portail d'Idées. Vous pourrez également participer à des activités amusantes et faciles comme des quiz techniques, des défis d'apprentissage et bien plus encore !

Connectez-vous à l'aide de vos identifiants InterSystems SSO.

Cordialement,
L'équipe du Global Masters

Discussion (0)1
Log in or sign up to continue
Discussion (9)1
Log in or sign up to continue
Article
· Dec 10, 2024 4m read

第四十六章 终端输入 输出 - CLOSE 命令

第四十六章 终端输入 输出 - CLOSE 命令

CLOSE 命令

释放设备的所有权,这是通过OPEN命令获得的。

语法

CLOSE device

终端预定义助记符空间

IRIS 提供了两个预定义的助记符空间供终端使用:

  • ^%X364 用于 ANSI X3.64 终端
  • ^%XDTM 用于 DTM PC 控制台

如果激活这些助记符空间之一,则可以在WRITE /mnemonic命令中使用与它们关联的控制助记符。还可以创建自己的助记符空间。有关助记符空间的更多信息,请参阅使用助记符空间控制设备。

以下部分描述了这些助记符空间的控制助记符。

Discussion (0)1
Log in or sign up to continue
Question
· Dec 10, 2024

Git Source Control not tracking CSP changes

Hey everyone, I am implementing version control with git-source-control on our codebase and I ran into a pretty strange issue. I believe I have the set up (mostly) correct as the behavior with .cls files is exactly as expected. However, I noticed that git is not keeping track of any changes to CSP files.

Specifically, if a new CSP file is created and saved, I will get the following output:

exporting new version of /csp/testdb/wrc.csp to C:\InterSystems\IRIS\mgr\repo\TESTDB\csp\testdb\wrc.csp

Added /csp/testdb/wrc.csp to source control.

C:\InterSystems\IRIS\mgr\repo\TESTDB\csp\testdb\wrc.csp removed from uncommitted list

exporting new version of /csp/testdb/wrc.csp to C:\InterSystems\IRIS\mgr\repo\TESTDB\csp\testdb\wrc.csp

Added /csp/testdb/wrc.csp to source control.

C:\InterSystems\IRIS\mgr\repo\TESTDB\csp\testdb\wrc.csp removed from uncommitted list

However, if I change a CSP file and save it, it simply compiles with no exporting, and git is unaware of any changes. I can neither see the change when running git status nor git add the file. When I went digging in the git repository location, the csp file is indeed completely unchanged (but the CSP files stored in /csp/ have changed). This is different to the behavior I observe when making changes to a .cls file. When I change a .cls file and save those changes, the output is as follows:

exporting new version of PET.DataFile.CLS to C:\InterSystems\IRIS\mgr\repo\PETDB\cls\PET\DataFile.cls

and git becomes aware of the change. 

Has anyone else seen this problem before? Did I neglect to turn on a setting somewhere? I have a sneaking suspicion that this might have something to do with server vs client side editing, but I did follow the official documentation around defining workspaces and I also made sure that there wasn't conflicting local folder settings. Any ideas would be much appreciated. Thanks! 

8 Comments
Discussion (8)2
Log in or sign up to continue