ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →IBM Cloud Object Storage FireDAC Component を使えば、Delphi & C++ Builder アプリケーションからIBM Cloud Object Storage データに簡単に連携できます。 Rapidly create and deploy powerful Delphi & C++Builder Apps that integrate with IBM Cloud Object Storage.
機能紹介
- SQL access to IBM Cloud Objects data through the IBM Cloud API
- Use SQL Stored Procedures to download, upload, or copy Objects
- Connect to live IBM Cloud Object Storage 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 IBM Cloud Object Storage 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
200+ FireDAC Drivers For Real-Time Data Access
詳細
FireDAC Components
あらゆるデータソースにRDB と同感覚で連携が可能に
標準FireDAC Components
MySQL やSQL Server のようなRDBMS への接続と同感覚。 TDFManager、TDFConnection、TDFQueryUse といった標準FireDAC components として。
FDConnection1.Name := 'IBMCloudObjectStorageConnection'; FDConnection1.DriverName := 'CData.Fire.IBMCloudObjectStorage'; with FDConnection1.Params as TFDPhysCDataIBMCloudObjectStorageConnectionDefParams do begin ... end; FDConnection1.Connected := true; FDQuery1.Active := true; FDQuery1.Open('select * from IBMCloudObject'); ...
Type SQL, Get IBM Cloud Object Storage
データ連携アプリケーションを開発する最適解。 RDBMS の扱いと同感覚で、IBM Cloud Object Storage への連携を、標準SQL で実装可能。JOIN、更新系、集計など多彩なSQL サポート。
SELECT WITH INNER JOIN
SELECT IBMCloudObject.Id, IBMCloudObject.Name, IBMCloudObject.Fax, Opportunity.AccountId, Opportunity.CloseDate FROM IBMCloudObject INNER JOIN Opportunity ON IBMCloudObject.Id = Opportunity.AccountId
集計関数
SELECT Name, AVG(AnnualRevenue) FROM IBMCloudObject GROUP BY Name
CRUD 処理
UPDATE IBMCloudObject SET Name='John' WHERE Id = @myId