天软金融分析.NET函数大全 > 数据仓库函数 > 财务函数

BasicIDExists    

简述

返回某信息ID是否存在
定义
BasicIDExists(ID:Integer):Boolean;
参数
名称类型说明
IDInteger整数,某信息的ID号。
返回Boolean布尔,存在即为真,不存在为假。
  • 范例


    infoid:= DatabaseInfoArrayId(21);
    return BasicIDExists(infoid);
    //返回1,表示存在
相关