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
Hi, in your example output, it seems that numeric fields (creditLimit and salesRepEmployeeNumber) is exported as text fields:
[ { "id": "114", "customerName": "Australian Collectors, Co.", "contactLastName": "Ferguson", "contactFirstName": "Peter", "phone": "123456", "addressLine1": "636 St Kilda Road", "addressLine2": "Level 3", "city": "Melbourne", "state": "Victoria", "postalCode": "3004", "country": "Australia", "salesRepEmployeeNumber": "1611", "creditLimit": "117300" }, ...
]
It should be (without double quotes):
[ { "id": "114", "customerName": "Australian Collectors, Co.", "contactLastName": "Ferguson", "contactFirstName": "Peter", "phone": "123456", "addressLine1": "636 St Kilda Road", "addressLine2": "Level 3", "city": "Melbourne", "state": "Victoria", "postalCode": "3004", "country": "Australia", "salesRepEmployeeNumber": 1611, "creditLimit": 117300 }, ...
Am I wrong? I have the some result with sqlite db of mine with all numeric fields.
Thank you
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
in your example output, it seems that numeric fields (creditLimit and salesRepEmployeeNumber) is exported as text fields:
]
It should be (without double quotes):
]
Am I wrong? I have the some result with sqlite db of mine with all numeric fields.
Thank you
The text was updated successfully, but these errors were encountered: