接続
Acumatica に接続するには、DSN またはODBC 接続文字列のいずれかを使用できます。これらの方法は、どちらもデータベースのOpen メソッドを使用します。
DSN に接続する
DSN を使用して接続するには:
var db = new Database(); db.open("DSN=CData Acumatica Sys", (err) => { // Use the connection });
ドライバーの接続文字列を提供する
ODBC 接続文字列を使用して接続するには:
var db = new Database(); db.open("DRIVER={CData ODBC Driver for Acumatica};Url = https://try.acumatica.com/ISV/entity/Default/17.200.001/;User=user;Password=password;Company=CompanyName;;", (err) => { // Use the connection });