ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →Amazon DynamoDB FireDAC Component を使えば、Delphi & C++ Builder アプリケーションからAmazon DynamoDB データに簡単に連携できます。 Connect Delphi & C++Builder Apps with the DynamoDB real-time NoSQL cloud database service. Use Amazon DynamoDB as the big data backend that powers your Delphi & C++Builder Apps.
機能紹介
- Perform value-sensitive queries that properly interface with the loose typing available in DynamoDB columns
- Easily insert and update entire DynamoDB documents and lists
- Compatible with the current version of the DynamoDB REST API, version 2012-08-10
- Makes use of DynamoDB indexing for improved performance
- Enables SQL-92 capabilities on Amazon DynamoDB NoSQL data.
- Flexible NoSQL flattening - automatic schema generation, flexible querying etc.
- Connect to live Amazon DynamoDB 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 Amazon DynamoDB seamlessly integrate with RAD Studio
- Comprehensive support for CRUD (Create, Read, Update, & Delete)
- 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 := 'AmazonDynamoDBConnection'; FDConnection1.DriverName := 'CData.Fire.AmazonDynamoDB'; with FDConnection1.Params as TFDPhysCDataAmazonDynamoDBConnectionDefParams do begin ... end; FDConnection1.Connected := true; FDQuery1.Active := true; FDQuery1.Open('select * from Account'); ...
Type SQL, Get Amazon DynamoDB
データ連携アプリケーションを開発する最適解。 RDBMS の扱いと同感覚で、Amazon DynamoDB への連携を、標準SQL で実装可能。JOIN、更新系、集計など多彩なSQL サポート。
SELECT WITH INNER JOIN
SELECT Account.Id, Account.Name, Account.Fax, Opportunity.AccountId, Opportunity.CloseDate FROM Account INNER JOIN Opportunity ON Account.Id = Opportunity.AccountId
集計関数
SELECT Name, AVG(AnnualRevenue) FROM Account GROUP BY Name
CRUD 処理
UPDATE Account SET Name='John' WHERE Id = @myId