We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've noticed a lot of fields properties missing in Native Bindings.
fields
Here I'm making a request via JavaScript Bindings first:
[ { name: 'name', tableID: 788296, columnID: 1, dataTypeID: 25, dataTypeSize: -1, dataTypeModifier: -1, format: 'text' }, { name: 'age', tableID: 788296, columnID: 2, dataTypeID: 23, dataTypeSize: 4, dataTypeModifier: -1, format: 'text' } ]
And then the same with the Native Bindings:
[ { name: 'name', dataTypeID: 25 }, { name: 'age', dataTypeID: 23 } ]
Missing fields: tableID, columnID, dataTypeSize, dataTypeModifier, format.
tableID
columnID
dataTypeSize
dataTypeModifier
format
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've noticed a lot of
fields
properties missing in Native Bindings.Here I'm making a request via JavaScript Bindings first:
And then the same with the Native Bindings:
Missing fields:
tableID
,columnID
,dataTypeSize
,dataTypeModifier
,format
.The text was updated successfully, but these errors were encountered: