class Helpers

Database helpers.

Properties

static int $maxLength
static array $typePatterns

Methods

static void
dumpResult(ResultSet $result)

Displays complete result set as HTML table for debug purposes.

static string
dumpSql(string $sql, array $params = null, Connection $connection = null)

Returns syntax highlighted SQL command.

static array
detectTypes(PDOStatement $statement)

Common column type detection.

static string
detectType(string $type)

Heuristic column type detection.

static array
normalizeRow(array $row, ResultSet $resultSet)

No description

static int
loadFromFile(Connection $connection, string $file, callable $onProgress = null)

Import SQL dump from file - extremely fast.

static ConnectionPanel|null
createDebugPanel(Connection $connection, bool $explain, string $name, Bar $bar, BlueScreen $blueScreen) deprecated

No description

static ConnectionPanel|null
initializeTracy(Connection $connection, bool $addBarPanel = false, string $name = '', bool $explain = true, Bar $bar = null, BlueScreen $blueScreen = null)

No description

static array
toPairs(array $rows, $key = null, $value = null)

Reformat source to key -> value pairs.

static string
findDuplicates(PDOStatement $statement)

Finds duplicate columns in select statement

Details

at line 43
static void dumpResult(ResultSet $result)

Displays complete result set as HTML table for debug purposes.

Parameters

ResultSet $result

Return Value

void

at line 85
static string dumpSql(string $sql, array $params = null, Connection $connection = null)

Returns syntax highlighted SQL command.

Parameters

string $sql
array $params
Connection $connection

Return Value

string

at line 162
static array detectTypes(PDOStatement $statement)

Common column type detection.

Parameters

PDOStatement $statement

Return Value

array

at line 180
static string detectType(string $type)

internal  
 

Heuristic column type detection.

Parameters

string $type

Return Value

string

at line 196
static array normalizeRow(array $row, ResultSet $resultSet)

internal  
 

No description

Parameters

array $row
ResultSet $resultSet

Return Value

array

at line 242
static int loadFromFile(Connection $connection, string $file, callable $onProgress = null)

Import SQL dump from file - extremely fast.

Parameters

Connection $connection
string $file
callable $onProgress

Return Value

int

count of commands

at line 287
static ConnectionPanel|null createDebugPanel(Connection $connection, bool $explain, string $name, Bar $bar, BlueScreen $blueScreen) deprecated

deprecated use Helpers::initializeTracy()

No description

Parameters

Connection $connection
bool $explain
string $name
Bar $bar
BlueScreen $blueScreen

Return Value

ConnectionPanel|null

at line 298
static ConnectionPanel|null initializeTracy(Connection $connection, bool $addBarPanel = false, string $name = '', bool $explain = true, Bar $bar = null, BlueScreen $blueScreen = null)

No description

Parameters

Connection $connection
bool $addBarPanel
string $name
bool $explain
Bar $bar
BlueScreen $blueScreen

Return Value

ConnectionPanel|null

at line 323
static array toPairs(array $rows, $key = null, $value = null)

Reformat source to key -> value pairs.

Parameters

array $rows
$key
$value

Return Value

array

at line 359
static string findDuplicates(PDOStatement $statement)

Finds duplicate columns in select statement

Parameters

PDOStatement $statement

Return Value

string

Traits

Static class.