Delphi Dataset 转 JSON 利用 Delphi 将数据集 (Dataset) 转换为 JSON 格式字符串,适用于三层架构中的数据传输。 Delphi 24 次浏览 2024-04-30
Sitka Weather Dataset for July 2014 The CSV file for the 16th chapter of the book 'Python Crash Course' provides weather data for Sitka in July 2014. You can access the file at this link Python 36 次浏览 2024-05-26
Mini Nuscense A Compact Dataset for Autonomous Driving Mini Nuscense likely refers to a smaller or simplified version of the data set associated with fields such as computer vision, autonomous driving, and Nodejs 17 次浏览 2024-11-04
DBGrid/DBGridEh/DataSet导出Excel工具 DBGrid 的数据导出到 Excel,其实一直是 Delphi 开发里挺常见的需求。这套从 DelphiBox 改过来的源码,就还挺顺手的,适合写一些小型数据工具。支持DBGrid、DBGridEh和DataSet导出,带例子,代码也清晰,看一遍就能上手。 属性、方法、事件都有写法示例,哪怕你是想 Delphi 0 次浏览 2025-07-06
将DataSet数据转为Json的方法 public string ConvertDataSetToJson(DataSet dataSet){return JsonConvert.SerializeObject(dataSet, Formatting.Indented);} C# 30 次浏览 2024-04-21