intersystems

How to take screen shots in windows system using Intersystems Cache?

谁说我不能喝 提交于 2020-01-07 09:51:12
问题 How to take screen shots in windows system using inter systems cache? 回答1: Cache doesn't have any built-in way to directly take a screen shot, so the closest you could come is to have a Caché process call something that does know how to take a screen shot. The ways to call out from cache are documented on the Intersystems web site and this same documentation is usually included in a Caché install. The simplest option (and you don't give enough information to know whether that will work) is

How to take screen shots in windows system using Intersystems Cache?

こ雲淡風輕ζ 提交于 2020-01-07 09:51:02
问题 How to take screen shots in windows system using inter systems cache? 回答1: Cache doesn't have any built-in way to directly take a screen shot, so the closest you could come is to have a Caché process call something that does know how to take a screen shot. The ways to call out from cache are documented on the Intersystems web site and this same documentation is usually included in a Caché install. The simplest option (and you don't give enough information to know whether that will work) is

Intersystems Caché with Java Gateway - Pass parameter as java.io.FileInputStream

若如初见. 提交于 2019-12-25 14:10:47
问题 In my project I'm using a integration of Intersystems Caché with Java by a Java Gateway, it's basically maps JARs and create a class proxies in Caché to access Java classes into the JAR. A class in Java has a parameter of type FileInputStream , my question is how I should send this parameter Caché proxie ? What type of data in Caché represent the FileInputStream in Java? Regards, Lucas Boeing Scarduelli 回答1: When you create proxy for that java, should be created cache-class for

Intersystems Caché with Java Gateway - Pass parameter as java.io.FileInputStream

淺唱寂寞╮ 提交于 2019-12-25 14:08:35
问题 In my project I'm using a integration of Intersystems Caché with Java by a Java Gateway, it's basically maps JARs and create a class proxies in Caché to access Java classes into the JAR. A class in Java has a parameter of type FileInputStream , my question is how I should send this parameter Caché proxie ? What type of data in Caché represent the FileInputStream in Java? Regards, Lucas Boeing Scarduelli 回答1: When you create proxy for that java, should be created cache-class for

Intersystems Cache coding query

孤街浪徒 提交于 2019-12-12 05:03:10
问题 SELECT Distinct visitid As Visit_ID, AreaId->FacilityID As Facility_ID, visitid-PatientSecondaryNumber As Patient_MRN, visitid->PatientName As Patient_Name, visitid-statustext As visit_Status, visitid->LastVisitTypeID->shortname As visit_Type, visitid-LastVisitActivationTime As Last_Visit_Activation, (SELECT VisitConversionID->VisitTypeID-shortname FROM qcpr_arf_OC.VisitActivationTime WHERE visitid = qcpr_arf_RG.AreaBedHistoryEventTime.visitid AND VisitConversionID->VisitTypeID-shortname LIKE

How to set %Dictionary.StorageSQLMapDataDefinition.RetrievalCode?

不打扰是莪最后的温柔 提交于 2019-12-12 01:52:27
问题 How can I do this: <Data name="hyperlink"> <RetrievalCode> <![CDATA[set res="" set colId="" for { set colId = $order( ^ohtest("mltab","main","Dta",{L4},colId) ) quit:(colId = "") set indexTab = $g(^ohtest("mltab","main","Dta",{L4},colId,"Index")) if indexTab'="" { set res = res_"<hyperlinkIndexTab><colId>"_colId_"</colId><iTab>"_indexTab_"</iTab></hyperlinkIndexTab>" } } s {hyperlink}=res]]></RetrievalCode> </Data> programatically? I have: set global = "^ohtest" set iTab="main" //hyperlink

Intersystems CACHESQL Database Globals to ODBC or cacheSQL client

和自甴很熟 提交于 2019-12-11 12:08:55
问题 I have a Intersystems CacheSQL Database which I have to work with in .net (VB or C#). The problem though, is that most data are not stored in Intersystem's CacheSQL, but rather in it's GLOBALS storage (which I think are arrays). A GLOBALS array looks like this: ^BACKTR("INDX","COMPANY",1,63543,5870) ^BACKTR("DATA","STATISTICS",5870) = "613"_$c(1)_"3503||0"_$c(1)_"82"_$c(1)_"1"_$c(1)_"49"_$c(1)_"1"_$c(1)_"1950"_$c(1)_"63543"_$c(1)_"11301"_$c(1)_"3"_$c(1)_"CORP-A1"_$c(1)_"1656.06"_$c(1)_"150"_

Output a list of GLOBALS or a single GLOBAL value with VisM

拟墨画扇 提交于 2019-12-11 11:59:48
问题 I have dded a VisM control into vb.net via adding a reference to VisM.ocx and adding it in my toolbox as an activeX control. I added the following code in a button: Try 'open the connection AxVisM1.Connect("CN_IPTCP:127.0.0.1[1972]") 'set namespace to livedata (for formal namespaces, use the @ symbol) AxVisM1.NameSpace = "LIVEDATA" 'do stuff. MsgBox("Cache is now active") 'close the connection AxVisM1.DeleteConnection() Catch ex As Exception 'close the connection AxVisM1.DeleteConnection()