META-INF.dirigible.test-project.datastore.student.mjs Maven / Gradle / Ivy
import { store } from "sdk/db";
import { response } from "sdk/http";
let entry = { 'name': 'John', 'address': 'Sofia, Bulgaria' };
store.save('Student', entry);
let list = store.list('Student');
response.println(JSON.stringify(list));
response.flush();
response.close();
© 2015 - 2025 Weber Informatics LLC | Privacy Policy