iterate through same number of columns as defined in the header
This commit is contained in:
parent
d8e0ae501c
commit
ad21159d3d
@ -472,7 +472,7 @@ namespace UniversalEditor.Plugins.CRI.DataFormats.Database.UTF
|
||||
|
||||
for (int i = 0; i < dt.Records.Count; i++)
|
||||
{
|
||||
for (int j = 0; j < dt.Records[i].Fields.Count; j++)
|
||||
for (int j = 0; j < dt.Fields.Count; j++)
|
||||
{
|
||||
if (columnStorageTypes[j] == UTFColumnStorageType.PerRow)
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user