Opened 13 years ago
Closed 13 years ago
#1752 closed enhancement (fixed)
Misuse column name instead of column index during data reader's serialization
Reported by: | sparkliu | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | |
Component: | Feature Service | Version: | |
Severity: | trivial | Keywords: | |
Cc: | External ID: |
Description
During the serialization of data reader, most of code uses column name instead of column index, for example, get column type, check null, get data. Actually as the final purpose is to return the whole dataset, there is no such situation that a column exists in dataset but not serialized, also the sequence of property is exactly the same with the sequence of column. So the serialization can be optimized to use column index to reduce column searching.
Attachments (1)
Change History (2)
by , 13 years ago
Attachment: | Fix patch for 1752.patch added |
---|
comment:1 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Fix patch