Giter Club home page Giter Club logo

Comments (7)

alexiusacademia avatar alexiusacademia commented on September 23, 2024 1

Thank you too for the question. That type of data structure on a database could considered in the future version of electron-db @EnOane

from electron-db.

alexiusacademia avatar alexiusacademia commented on September 23, 2024

Hi EnOane, I'm assuming that your table name is "equipment" in equipment.json.
Now, first is that the table structure should look something like this,

{
  "equipment" : [
    {
      "row_name": "lala",
      "id": "1525272872463",
      "group": "oil",
      .......
    }
  ]
}

then you update the "lala" row by

const db = require('electron-db');
const electron = require('electron');

const app = electron.app || electron.remote.app;

let where = {
  "row_name": "lala"
};

let set = {
  "notes": "The things that you want to go in here.."
}

db.updateRow('equipment', where, set, (succ, msg) => {
  // succ - boolean, tells if the call is successful
  console.log("Success: " + succ);
  console.log("Message: " + msg);
});

from electron-db.

EnOane avatar EnOane commented on September 23, 2024

Thanks you. But I have another question.
How I can get "row_name":

{
"equipment" :
{
"hope":
{
"row_name": "lala",
"id": "1525272872463",
"group": "oil"
}
}

from electron-db.

alexiusacademia avatar alexiusacademia commented on September 23, 2024

WHat do you mean "How can u get "row_name"?

By the way, after the "equipment": it should be a list, square brackets instead of curly braces.

from electron-db.

EnOane avatar EnOane commented on September 23, 2024
"squads": {
    "firstSquad": {
      "id": "1",
      "name": "I смена",
      "description": "THIS",
      "rescues": [
        {
          "avatar": "/static/rescuers/10.jpg",
          "name": "Бондарев Максим",
          "birthday": "05/08/1984",
          "position": "Командир отделения",
          "dateOfEmployment": "01/02/2016",
          "certificationForGRW": "01/02/2016",
          "certificationForFW": "01/02/2016",
          "certificationForSRW": "01/02/2016",
          "certificationForHW": "1",
          "certificationForHWM": "01/02/2016",
          "docs": {
            "passport": {
              "name": "Паспорт",
              "description": "Документ, удостоверящий личность",
              "path": ""
            },
            "identityCardRescue": {
              "name": "Удостоверение спасателя",
              "description": "Выдается при первой аттестации",
              "path": ""
            },
            "booksRescue": {
              "name": "Книжка спасателя",
              "description": "Выдается вместе с удостоверением",
              "path": ""
            }
          }
        },
      ]
    } .....


How can I get "description"? Path = squads.firstSquad.description

from electron-db.

alexiusacademia avatar alexiusacademia commented on September 23, 2024

At the current version of electron-db, you can't, based on the structure of your data.

At the moment, electron-db only support one level object. Which means only one object with the table name and that object contains a list of objects without any sub-level objects.

This is derived from the structure of a relational database where you can only have one level of fields in a table (e.g. "field1", "field2" etc.)

from electron-db.

EnOane avatar EnOane commented on September 23, 2024

@alexiusacademia Thanks you very much! )

from electron-db.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.