Does suiteql allow us to push data to netsuite?
# suiteql
a
Does suiteql allow us to push data to netsuite?
a
no its read only
m
NetSuite does not allow any database level direct-write access. Your options are UI, CSV import, SuiteFlow or SOAP. There is an ODBC connector through CData that can write to the NetSuite database through "legal" methods.
s
I've used the CData connection, and based on the speed of it (it was very slow) I suspect it is translating inserts / updates into SuiteTalk calls, and likely doing it row by row. I don't think they have any special connection to NetSuite, or if they do have some special connection, it's not fast.
Another way is to use Restlets (SuiteScript) to build a custom data insert/update endpoint, but it is more work and maintenance than the other options.
👍 1