Skip to content
Quint Stoffers edited this page Mar 5, 2014 · 1 revision
  1. Add require_once entry in /PHPConvert/ReaderManager.php
  2. Add an instance of your reader to the array of reader, make sure the CSVReader is last

Example: add SQLiteReader:

  1. Browse to /PHPConnect
  2. Open ReaderManager.php
  3. Add the line require_once 'Readers/SQLiteReader.php';
  4. Add the line $this->converters[] = new SQLiteReader(); in the constructor, before CSVReader
Clone this wiki locally