Schema not being applied
See original GitHub issueI’m using Node 11 and read-excel-file 4.0.5
When I supply a Schema:
const schema = {
"CC-CODE": {
prop: "code",
required: true,
type: String
},
"DEFINITION": {
prop: "definition",
required: true,
type: String
},
"ENGLISH": {
prop: "english",
required: true,
type: String
},
"SWEDISH": {
prop: "swedish",
required: true,
type: String
},
"BLISS": {
prop: "bliss",
required: true,
type: String
},
"ARASAAC": {
prop: "arasaac",
required: true,
type: String
},
"CATEGORIES": {
prop: "categories",
required: true,
type: String
}
};
and apply it to: var sheet = readXlsxFile('data.xlsx',{schema});
I’m not getting back {rows, errors} I’m getting data just as if I had never used a schema.
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Default Schema not being applied even after setting default ...
After doing some soul searching I ran the following command that led me to the path that something was amiss (possible with the...
Read more >Schema not being used in simple query, Error Screen
When I click Ask a Question, Simple Question, select our database, select a schema, and click on a table, I see the following...
Read more >default schema not working? - MSDN - Microsoft
I connect to the database, and the default schema seems to be set to dbo. Can anyone thing of a reason why this...
Read more >Default Schema not being applied even after setting default ...
Hello Stack Exchange! I have an interesting problem! Let me set the stage for you: 1) Windows Authentication. 2) Default Schema identityiq ...
Read more >How do I resolve issues with missing or incorrect schema ...
If the row is missing then this generally means the environment's database were not setup properly. Resolution: recreate the environment using the proper...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You’re right.
The screwy thing about this is that it worked for 6 months and then started doing this out of the blue. No updates done, nothing.
I think your library was great when it was working, but something is going wrong somewhere. Most undoubtedly on my end.
If anyone runs into this with Microsoft Excel for Mac Version 16.27 I wish them luck.
Having the same issue. Has someone found a way to correct this?