NeoFlow 將 Message 傳送到您指定的資料庫系統時,會依循下列作業:
- 當 Gateway 連接到資料庫系統時,如果指定的資料表尚不存在,它將自動創建該資料表。因此您給予的資料庫系統用戶必須要有建立資料表的權限。
 - 資料表名稱預設值是 neoedge,您可以於 NeoFlow 中更改設定。
 - 資料表的欄位規格如下表
 - 當 Message 產生時,該 Message 會以 Insert SQL 語法新增到資料庫中
 - 建議您注意此資料表的資料量,定時移除不需要的資料
 
| No | Column Name | Data Type | Value Example | 
| 1 | id | bigint, key | incremental number | 
| 2 | timestamp | bigint | 1728949646 (10 digital integer), millisecond | 
| 3 | payload | text or nvarchar(max) | Message payload | 
	



