i want to write a application for educational purposes which will be able to write, read and store name , surnames and birthdays of patience in a database in Caché ObjectScript
this are the codes i have already written can someone help me out.
// fill in ^Data with sample data
For i = 1:1:100 {
// Set each node to a random person's name
Set ^Data(i,"name") = ##class(%PopulateUtils).LastName()
Set ^Data(i,"surname") = ##class(%PopulateUtils).FirstName()
Set ^Data(i,"birthday") = ##class(%PopulateUtils).Date()
}