Questions tagged [objectscript]

ObjectScript is a general purpose object-oriented programming language. It is designed to be simple to learn, easy to use, yet still powerful, combining the convenience of an interactive interpreter with many of the features of Java.

ObjectScript is a general purpose object-oriented programming language developed by InterSystems Corporation. It is designed to be simple to learn, easy to use, yet still powerful, combining the convenience of an interactive interpreter with many of the features of Java:

  • a simple java-like syntax
  • class system, with single inheritance and mixins
  • private/protected/public fields and methods
  • exceptions for error handling
  • synchronization and threading
  • compiles to bytecode for higher performance
  • osdoc: a javadoc-like tool to extract API documents
  • from src code, plus API docs accessible reflectively
  • XML-RPC support
  • Windows COM support
  • regular expressions (requires java v1.4 or later)
63 questions
0
votes
1 answer

InterSystems cache - how to insert into a join table?

The following objectscript will create the following SQL table: Objectscript Class Class MyApp.Parent Extends %Persistent { Property Children As array Of MyApp.Child; } Parent_Children table and columns: Parent int NOT NULL, ID varchar(254) NOT…
O.O
  • 11,077
  • 18
  • 94
  • 182
0
votes
1 answer

get current url with "csp intersystem cache objescript"

as I can get the current url with csp cache language ? without using mv. I also want to get the current domain ie if I have this url www.midominio.hn / assets / hola.csp get www.midominio.hn
Ronal Vasquez
  • 109
  • 2
  • 14
0
votes
3 answers

Inherited Relationship not working as expected

I have the following classes: Class SearchTemplateDO [ Abstract ] { Relationship QueryParts As QueryPartDO [ Cardinality = many, Inverse = SearchTemplate ]; } Class MyCustomSearchDO Extends (%Persistent, SearchTemplateDO) { /// inherits all…
O.O
  • 11,077
  • 18
  • 94
  • 182
1 2 3 4
5