Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

typeorm sqlite Using async/await syntax

import {createConnection} from "typeorm";
import {Photo} from "./entity/Photo";
 
createConnection(/*...*/).then(async connection => {
 
    let photo = new Photo();
    photo.name = "Me and Bears";
    photo.description = "I am near polar bears";
    photo.filename = "photo-with-bears.jpg";
    photo.views = 1;
    photo.isPublished = true;
 
    await connection.manager.save(photo);
    console.log("Photo has been saved");
 
}).catch(error => console.log(error));
Source by www.npmjs.com #
 
PREVIOUS NEXT
Tagged: #typeorm #sqlite #Using #syntax
ADD COMMENT
Topic
Name
9+8 =