2017 © Pedro Peláez
 

library table-analyzer

Database column analyzer tool for the developer on the go

image

zwacky/table-analyzer

Database column analyzer tool for the developer on the go

  • Tuesday, May 13, 2014
  • by zwacky
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Build Status, (*1)

TableAnalyzer

Database column analyzer tool for the developer on the go., (*2)

Usage

   $analyzer = new \Zwacky\TableAnalyzer\TableAnalyzer;
   $columns = $analyzer->getColumns('table_name');

returns an array of every column and their types, e.g.:, (*3)

'content' => array(10) {
    'type' => string(4) "text"
    'length' => NULL
    'precision' => int(10)
    'scale' => int(0)
    'unsigned' => bool(false)
    'fixed' => bool(false)
    'notnull' => bool(true)
    'default' => bool(false)
    'autoincrement' => bool(false)
    'comment' => NULL
}

The Versions

13/05 2014

dev-master

9999999-dev

Database column analyzer tool for the developer on the go

  Sources   Download

The Requires

 

The Development Requires

by Simon Wicki