What is the difference between $case and $select?.Where places to use $case and $select?
Difference between function , routine and procedure in object script.
I tried to get a image from user . But It did not run. So please solve this problem
Class Quadramed.Chennai Extends %Persistent
{
Property Image As %Stream.FileBinary(LOCATION = "C:/Images");
Method imagefile()
{
s obj = ##class(Sam.binary).%New()
r "enter your name",img
d obj.Image.Write(img)
s status = obj.%Save()
}
I created on program . How to convert this application in .exe format.
How to get a input in array collection with class properties.
Class collect.arraylist Extends %Persistent
{
Property DOB As %Collection.ArrayOfDT;
ClassMethod valu()
{
s list = ##class(collect.arraylist).%New()
r ""your DOB:", DOB1
do list.arraylist.SetAt("DOB1",0)
}
I get a input from user.How to I retrieve the data from these input. I enter the program but its occurred Some error .So give an idea of how to retrieve the data from properties.
ClassMethod Getvalue()
{
S Details = ##class(Sample.Employeedetails).%New()
r "Enter Your Name:" , Name1
s Details.Name = Name1
r "Enter Your Address :", Address1
s Details.Address = Address1
r "Enter your Phone Number:",Phonenumber1
s Details.Phonenumber = Phonenumber1
r "Enter your Blood Group:", Bloodgroup1
s Details.Bloodgroup = Bloodgroup1
r "Enter Your Desination:",Desiation1
s Details.
How to retrive the unstructure data using iknow concept in Cache . Given real time Example of these concepts?
I got a input to user . How to I print the input in another method
ClassMethod sample() As %String
{
Set Name=##class(Eam.Empdetails).%New()
r "enter your name :",NameStr
s Name.EmpName=NameStr
r "enter your address:",NameStr1
s Name.Address=NameStr1
r "Enter your Phone number:",NameStr2
s Name.PhoneNo =NameStr2
r "Enter Your Id:",NameStr3
s Name.id = NameStr3
set status = Name.%Save()
}
What are the difference between method() and ClassMethod() in Cache Class definition
Listout the Difference between Cache object script and Mumps
Below object creation is correct or not .Suppose wrong as how to get the values to user.
Set Name=##class(Example.Team1).%New()
r "enter your name :",Name.EmpName.
r "enter your address:",Name.Address
r "Enter your Phone number:",Name.PhoneNo
r "Enter Your Id:",Name.id
set status = Name.%Save()
How to I add a data in properties and what are the relationship with properties and methods . How to use a properties in method and properties to add a data or object.
What are the difference between Caché and Cache.
Why we are not using database of join (inner join and outer join) concept. How to we are retrieving the data from different tables in cache. Any Concepts are using in Cache database to retrieve the data.
Caché Application Developer certification:
How to I prepare developer certification of cache .What are the topics are preparing certification . Please give the topics .I will start learning of certification course .
Difference Between Macro and routine?
Please Explain "$h"
I wrote a macro in studio. Its how to run with Terminal.
do macro name ^filename is correct are not
what are the difference between Deepsee and Ensemble , and how to access the ensemple .Please Tell me
write "5apples" + "7 orange" //Ans :12
Values are string , why add numeric value . its an error or correct . please tell me.
What are the difference between $ and $$ symbols using macro.
How to get a user input in cache . Below this program run in browser but displayed the error of "
Caché Server Pages Version 2016.1.1.108.0
Error Condition The processing of the request was interrupted
CSP application closed the connection before sending a complete response"
<html>
<head>
<title>User input </title>
</head>
<body>
<script language="Cache" runat="server">
r "enter 1ST num",x
r "Enter 2ND num",y
s z = x+y
w z
</script>
</body>
</html>
Are Excercise parts avilable in documentation of InterSystems cache . Please Give the link. Thank you
Sir, please give a sample program for cache with database . It is useful for my individual learning.
I am learning cache in beginning level . But confused .Give an idea for how to i learn cache easily and improve programming level
Dear Sir ,
how to i run csp file . sometime csp file runs as at a time appear "Error #670: could not attach to target".How to solve it. Thank you
Hi,
I create a cache class program. Its compile it. But how to run it?
Please send one sample program with output
How to connect with Java in Cache Studio. Explain breifly.