It looks like the DSN must be set up ok as KiCad will bork if it can’t connect to the database so that’s a good start.
"libraries": [
{
"name": "Capacitors",
"table": "Capacitors",
"key": "Mnf. PN",
"symbols": "Symbol",
"footprints": "Footprint",
"fields": [
Two things I would look at in your .kicad_dbl - firstly I would change the name of your key column in the database to something without a space. “Mnf. PN” is probably not a good name. I have had to remove spaces from database column names before for them to be recognised.
In any case, I would have used the “CameroPN” as the key - you want to be able to substitute parts, the house part number is the point of reference and you validate your components against that definition. i.e. Your CC6308 could be substituted by any other suitable and validated 10000pF 50V X7R 0402 not just a GRM155R71H103KA88J.
Secondly, you need to add some more columns for your other items. MPN & Description at least but you probably want to add some values for the database to start to become useful.
"libraries": [
{
"name": "Resistors_SMD",
"table": "RESISTORS_SMD",
"key": "part_id",
"symbols": "Symbols",
"footprints": "Footprints",
"fields": [
{
"column": "Description",
"name": "Description",
"visible_on_add": false,
"visible_in_chooser": false,
"show_name": true
},
{
"column": "Datasheet",
"name": "Datasheet",
"visible_on_add": false,
"visible_in_chooser": true,
"show_name": false
},
{
"column": "Name",
"name": "MPN",
"visible_on_add": false,
"visible_in_chooser": true,
"show_name": true
},
{
"column": "Value",
"name": "Value",
"visible_on_add": true,
"visible_in_chooser": true,
"show_name": false
},
{
"column": "Manufacturer",
"name": "Manufacturer",
"visible_on_add": false,
"visible_in_chooser": true,
"show_name": false
},
{
"column": "Tolerance",
"name": "Resistance Tolerance",
"visible_on_add": true,
"visible_in_chooser": false,
"show_name": false
},
{
"column": "Power_Rating",
"name": "Power Rating",
"visible_on_add": false,
"visible_in_chooser": true,
"show_name": false
},
{
"column": "Case_Package",
"name": "Case/Package",
"visible_on_add": true,
"visible_in_chooser": false,
"show_name": false
},
{
"column": "Voltage_Rating",
"name": "Voltage Rating",
"visible_on_add": false,
"visible_in_chooser": false,
"show_name": false
},
{
"column": "Stock",
"name": "Stock",
"visible_on_add": false,
"visible_in_chooser": true
},
{
"column": "part_id",
"name": "ID",
"visible_on_add": false,
"visible_in_chooser": true
}
]