-
Notifications
You must be signed in to change notification settings - Fork 0
/
zzl.go
44 lines (34 loc) · 917 Bytes
/
zzl.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
* Copyright (c) 2000-2018, 达梦数据库有限公司.
* All rights reserved.
*/
package dm
type StructDescriptor struct {
m_typeDesc *TypeDescriptor
}
func newStructDescriptor(fulName string, conn *Connection) (*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
}