DBFFPT.PutValueFile 方法 | |
Read (Import) a value from an external file and write it to the specified column.
命名空间:
XSharp.RDD
程序集:
XSharp.Rdd (在 XSharp.Rdd.dll 中) 版本:2.22 GA
语法 VIRTUAL METHOD PutValueFile(
nFldPos AS LONG,
fileName AS STRING
) AS LOGIC
public override bool PutValueFile(
int nFldPos,
string fileName
)
查看代码参数
- nFldPos
- 类型:Int32
ONE based position for which the value should be written. - fileName
- 类型:String
Name of the file that needs to be read from.
返回值
类型:
Boolean
当操作成功时为 TRUE,当操作失败时为 FALSE。
一些 RDD 操作并不真正返回 FALSE,而是抛出异常来表示失败。
这些异常在更高级别的代码中被捕获,并在运行时状态的 LastRddError 属性中注册。
实现
PutValueFile(Int32, String)参见