Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

CSV

Blob variables and attributes can be parsed to collections of object instances.

...

Example code for extracting nurses from CSV in a blob type:

 

Info
  1. persistent object Clinic {
  2.     string name;
  3. }
  4.  
  5. persistent object Nurse {
  6.     string first_name;
  7.     date birth_date;
  8. }
  9.  
  10. object UploadedFile {
  11.     blob data;
  12. }
  13.  
  14. Nurse[] extractNurses(UploadedFile f) {
  15.     return Nurse:fromCsv(f.data);
  16. }