5 Star 43 Fork 21

springrain/dm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
zzl.go 919 Bytes
一键复制 编辑 原始数据 按行查看 历史
springrain 提交于 2023-02-03 12:01 . v1.8.11 来自 达梦8.1.2.192
/*
* Copyright (c) 2000-2018, 达梦数据库有限公司.
* All rights reserved.
*/
package dm
type StructDescriptor struct {
m_typeDesc *TypeDescriptor
}
func newStructDescriptor(fulName string, conn *DmConnection) (*StructDescriptor, error) {
sd := new(StructDescriptor)
if fulName == "" {
return nil, ECGO_INVALID_COMPLEX_TYPE_NAME.throw()
}
sd.m_typeDesc = newTypeDescriptorWithFulName(fulName, conn)
err := sd.m_typeDesc.parseDescByName()
if err != nil {
return nil, err
}
return sd, nil
}
func newStructDescriptorByTypeDescriptor(desc *TypeDescriptor) *StructDescriptor {
sd := new(StructDescriptor)
sd.m_typeDesc = desc
return sd
}
func (sd *StructDescriptor) getSize() int {
return sd.m_typeDesc.m_size
}
func (sd *StructDescriptor) getObjId() int {
return sd.m_typeDesc.m_objId
}
func (sd *StructDescriptor) getItemsDesc() []TypeDescriptor {
return sd.m_typeDesc.m_fieldsObj
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/chunanyong/dm.git
git@gitee.com:chunanyong/dm.git
chunanyong
dm
dm
master

搜索帮助