Question phillip jack · Apr 2, 2022 Subscript with double quoted Hi Team, I would like to save the array subscript with in double quotes eg sub1=111,sub2=444 (these values are dynamic) set array(sub1,sub2)="" It will be saved as array(111,444)="" but I want to save it as array("111","444")="" I am trying to save it from the class like """"_sub1_"""" but its not displaying as expected. Kindly do the need full. Thanks in Advance #ObjectScript #Caché #InterSystems IRIS 0 11 0 350
Question phillip jack · Feb 2, 2022 Saving a serial object using Result set Hi Folks, I created a persistent class as below Class myclass.DataBase Extends %Persistent { Property ID As %String; Property Skill As list Of myclass.SerialTablelist; } and Created another Serial class as Class myclass.SerialTablelist Extends %SerialObject { Property PSkill As %String; Property OSkill As %String; } Now I will save the id as below do rs.Prepare("Insert into myclass.DataBase(ID)VALUES(?)") do rs.Execute(ID) #Databases #InterSystems Business Solutions and Architectures #ObjectScript #Caché 0 12 1 459