SequoiaDB 简介
安装部署
数据库实例
分布式引擎
SAC 管控中心
参考手册
常见问题及解答(FAQ)
版本信息
addSectionComment - 为指定的 section 追加注释
IniFile.addSectionComment( <section> <comment> )
IniFile
为指定的 section 追加注释。
参数名 | 参数类型 | 默认值 | 描述 | 是否必填 |
---|---|---|---|---|
section | string | --- | 段名 | 是 |
comment | string | --- | 添加的注释 | 是 |
执行成功,无返回值.
执行失败,抛异常。
如果出错则抛异常,并输出错误信息,可以通过getLastErrMsg()获取错误信息或通过getLastError()获取错误码。关于错误处理可以参考常见错误处理指南。
常见错误可参考错误码。
v3.2 及以上版本
打开一个 INI 文件。
> var ini = new IniFile( "/opt/sequoiadb/file.ini", SDB_INIFILE_FLAGS_DEFAULT )
为指定的 section 追加注释。
> ini.addSectionComment( "info", "personal information" )