Store Table into Database #8

Closed
opened 2022-09-05 01:33:13 +00:00 by engineerjoe440 · 1 comment

Our data table should be able to store information to the database. Not so hard, right?

In a nutshell, our database will be a JSON (JavaScript Object Notation) file, which means, it'll end up being looking something like this:

[
    {
        // "key": "value",
        "serial-number": "123456",
        "grade": "6",
        "brand": "Dell",
        "checked-out": True
    },
    {
        // "key": "value",
        "serial-number": "654321",
        "grade": "8",
        "brand": "Dell",
        "checked-out": True
    }
]
Our data table should be able to store information to the database. Not so hard, right? In a nutshell, our database will be a JSON (**J**ava**S**cript **O**bject **N**otation) file, which means, it'll end up being looking something like this: ```json [ { // "key": "value", "serial-number": "123456", "grade": "6", "brand": "Dell", "checked-out": True }, { // "key": "value", "serial-number": "654321", "grade": "8", "brand": "Dell", "checked-out": True } ] ```
engineerjoe440 added this to the Initial Prototype milestone 2022-09-05 01:33:13 +00:00
engineerjoe440 added the
enhancement
label 2022-09-05 01:33:13 +00:00
joshb was assigned by engineerjoe440 2022-09-05 01:33:13 +00:00
joshb closed this issue 2022-09-05 01:34:23 +00:00
joshb reopened this issue 2022-09-05 01:34:27 +00:00
Author
Owner

This has been resolved with the changes made in commit 3f56ee7a81

This has been resolved with the changes made in commit 3f56ee7a81
Sign in to join this conversation.
No description provided.