ShipStation FireDAC Components

FireDAC を使ってShipStation にSQL で接続

Delphi とC++ Builder アプリをShipStation にリアルタイム接続。簡単かつ高速です。


  ダウンロード   価格

ShipStation FireDAC Component を使えば、Delphi & C++ Builder アプリケーションからShipStation データに簡単に連携できます。 Rapidly create and deploy powerful Delphi & C++Builder Apps that integrate with ShipStation.

機能紹介

  • Fully compatible with the ShipStation API
  • Use SQL Stored Procedures to perform actions like creating labels, adding tags, assigning users, and more
  • Powerful metadata querying enables SQL-like access to non-database sources
  • Push down query optimization pushes SQL operations down to the server whenever possible, increasing performance
  • Client-side query execution engine, supports SQL-92 operations that are not available server-side
  • Connect to live ShipStation data, for real-time data access
  • Full support for data aggregation and complex JOINs in SQL queries
  • Secure connectivity through modern cryptography, including TLS 1.2, SHA-256, ECC, etc.

Specifications

  • Native FireDAC Components for ShipStation seamlessly integrate with RAD Studio
  • Full Unicode support for data, parameter, & metadata
  • Support for 32-bit & 64-bit operating systems
  • Requires Delphi, C++ Builder, or RAD Studio 10.2 Professional or higher


AVAILABLE IN:
FireDAC SUBSCRIPTIONS
225+ FireDAC Drivers For Real-Time Data Access
詳細

FireDAC Components

あらゆるデータソースにRDB と同感覚で連携が可能に



標準FireDAC Components


MySQL やSQL Server のようなRDBMS への接続と同感覚。 TDFManager、TDFConnection、TDFQueryUse といった標準FireDAC components として。


	FDConnection1.Name := 'ShipStationConnection';
	FDConnection1.DriverName := 'CData.Fire.ShipStation';
	with FDConnection1.Params as
	    TFDPhysCDataShipStationConnectionDefParams do begin

	    ...
	end;


	FDConnection1.Connected := true;
	FDQuery1.Active := true;
	FDQuery1.Open('select * from Marketplaces');

	...

	

Type SQL, Get ShipStation


データ連携アプリケーションを開発する最適解。 RDBMS の扱いと同感覚で、ShipStation への連携を、標準SQL で実装可能。JOIN、更新系、集計など多彩なSQL サポート。

SELECT WITH INNER JOIN

	SELECT Marketplaces.Id, Marketplaces.Name, Marketplaces.Fax,
	  Opportunity.AccountId, Opportunity.CloseDate
	FROM Marketplaces
	INNER JOIN Opportunity
	  ON Marketplaces.Id = Opportunity.AccountId
	

集計関数

	SELECT Name, AVG(AnnualRevenue) FROM Marketplaces GROUP BY Name
	

CRUD 処理

	UPDATE Marketplaces SET Name='John' WHERE Id = @myId
	


エンタープライズレベルの機能