Skip to content

Commit 1f1fb4c

Browse files
committed
Do not change table column name case
1 parent 26ceae6 commit 1f1fb4c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/.idea

Diff for: src/XBase/Table.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ protected function readHeader()
8383

8484
for ($i=0;$i<$fieldCount;$i++) {
8585
$column = new Column(
86-
strtolower($this->readString(11)), // name
86+
$this->readString(11), // name
8787
$this->readByte(), // type
8888
$this->readInt(), // memAddress
8989
$this->readChar(), // length

0 commit comments

Comments
 (0)