You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$table = new Table(dirname(__FILE__).'/test.dbf');
@@ -38,8 +36,6 @@ Performance
38
36
You can pass an array of the columns that you need to the constructor, then if your table has columns that you don't use they will not be loaded. This way the parser can run a lot faster.
39
37
40
38
```php
41
-
<?php
42
-
43
39
use XBase\Table;
44
40
45
41
$table = new Table(dirname(__FILE__).'/test.dbf', array('my_column', 'another_column'));
@@ -65,8 +61,6 @@ Writing Data
65
61
To open a table for writing, you have to use a `WritableTable` object, as on this example:
66
62
67
63
```php
68
-
<?php
69
-
70
64
use XBase\WritableTable;
71
65
72
66
$table = new WritableTable(dirname(__FILE__).'/test.dbf');
0 commit comments