Questions tagged [intersystems]

InterSystems is a software company based in Cambridge, MA.

They sell many products related to software development, application integration and data storage including IRIS Data Platform, Caché, Ensemble, and HealthShare.

The products are based on the database (supports SQL, Object, NoSQL access) and the programming language.

Resources

Related tags

130 questions
1
vote
1 answer

how to get clipboard data to a variable in intersystems cache?

consider i have some data copied to my clip board. I would like to get those into a variable(not in a way of pasting on terminal window),so i can able to make use of that variable. can any one suggest any way of doing it.either by using script…
1
vote
1 answer

SQL insert does not function

I perform design in cache and it looks like it does not allow multiple insert, i.e. insert into Ruler (...) values (...), values().... or insert into Ruler (...) values (...), (....) So I decided to create method to perform insert. The problem…
Tigran
  • 1,049
  • 3
  • 15
  • 31
1
vote
1 answer
1
vote
2 answers

Connecting to a Cache (InterSystems) Database using Java

I'm currently creating an android application and need to connect to a InterSystems cache (ODBC) database, this is the first time I have developed for android and have never connected to a database in java in the past, any help will be appreciated.
ccStars
  • 817
  • 2
  • 11
  • 34
1
vote
1 answer

SQL ODBC to Intersystems Cache - lost Cache master user and password

Is there any way to access the Cache database data tables via SQL ODBC connection when the Intersystems Cache database admin username and password has been lost?
1
vote
4 answers

Send data to XDS Repository

So I'm trying to figure out how much capabilities comes with Intersystems to send data to an XDS repository. Specifically with using the basic Ensemble package (NO HSF) Assume it's not the one Intersystems delivers, but an external XDS…
RLZaleski
  • 616
  • 6
  • 17
1
vote
2 answers

Cache Intersystems %TIMESTAMP error

I'm new to Intersystems Cache and getting the following error returning a %Timestamp property from a Web Service i'm calling through a .NET Application: [System.FormatException] = {"The string '2012-11-22T20:00Z' is not a valid AllXsd value."} Does…
user676567
  • 1,119
  • 9
  • 20
  • 39
1
vote
2 answers

Intersystems Cache - Correct syntax for %ListOfObjects

The documentation says this is allowed: ClassMethod GetContacts() As %ListOfObjects(ELEMENTTYPE="ContactDB.Contact") [WebMethod] I want to do this: Property Permissions As %ListOfObjects(ELEMENTTYPE="MyPackage.MyClass"); I get an error: ERROR…
O.O
  • 11,077
  • 18
  • 94
  • 182
1
vote
2 answers

Correct XML to send for cache web service SOAP header

I created a simple header class: Class Sample.Headers Extends %SOAP.Header { Parameter NAMESPACE = "http://tempuri.org"; Property UserName As %String; } In the web service I made sure to set the correct namespace in the SOAPHEADERS…
O.O
  • 11,077
  • 18
  • 94
  • 182
1
vote
1 answer

What is Caché Object Script's method for passing parameters to a base constructor?

What is Caché Object Script's method for passing parameters to a base constructor? For example, in C# you would do the following: public MyConstructor(string id) : base(id) { } where id is the value you wish to pass to the base constructor.
O.O
  • 11,077
  • 18
  • 94
  • 182
1
vote
1 answer

Intersystems Cache - Get started with Callin API

I want to develop C client code using the callin API. I wrote code to connect to Cache. However, when I invoke it, I get ... Instance is not running Start status = -1 I am guessing that I am missing an environment variable to identify my default…
Kevin Gill
  • 407
  • 1
  • 5
  • 14
1
vote
2 answers

Intersystems Cache Unexpected error occurred:

I am trying to load in an old CACHE.DAT database into Intersystems Cache (2012.1.1 win32 evaluation). I've managed to create a namespace and database, and I'm able to query some of the database tables. However, for other tables, I get the following…
Macuyiko
  • 85
  • 1
  • 10
0
votes
1 answer

Intersystems Cache ODBC & PHP Character Encoding

Our billing software at work uses Intersystems Cache database to store all relevant data. I am currently developing a web based (PHP) application that displays various metrics based on this data. When viewing some of the data random strings contain…
0
votes
1 answer

How can I convert Intersystems Cache Global Objects to SQL or a more readable format?

I am using Intersystems Cache 2018.1.4. The data is stored in Globals and from what I see the only way to get data out is by using the export tool used. However, the only file format that I seem to be able to export to is .gof files. Is there a way…
EnYou
  • 21
  • 4
0
votes
3 answers

Converting Intersystems cache objectscript into a python function

I am accessing an Intersystems cache 2017.1.xx instance through a python process to get various attributes about the database in able to monitor the database. One of the items I want to monitor is license usage. I wrote a objectscript script in a…
1 2 3
8 9