SQLite3 读写 TreeView!

这篇博客介绍了如何使用SQLite3数据库中的数据构建并显示在TreeView组件上。通过读取DataTable表,根据Parent字段来确定节点的层级关系,实现数据的树形结构展示。
摘要由CSDN通过智能技术生成
unit Unit1;
interface
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,

  Dialogs, fcTreeView,SQLiteTable3, StdCtrls, ImgList, ComCtrls;


type
    TPItem = Record    //表中记录的类型
       Sign:Integer;
       Caption:string;
       Parent:Integer;

    end;


    PItem = ^TPItem;  //指向极开路的指针


    TForm1 = class(TForm)
    fcTreeView2: TfcTreeView;
    fcTreeView1: TfcTreeView;
    ImageList1: TImageList;
    Button1: TButton;
    Button4: TButton;
    function  FindParentNode(Id:Integer):TfcTreeNode;
    procedure Button1Click(Sender: TObject);
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;
var
  Form1: TForm1;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值