API15

JInstallerHelper/splitSql

From Joomla! Documentation

< API15:JInstallerHelper
Revision as of 13:32, 12 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Splits contents of a sql file into array of discreet queries queries need to be delimited with end of statement marker ';'

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

splitSql($sql)
Parameter Name Default Value Description
$sql

Returns[edit]

array

Defined in[edit]

libraries/joomla/installer/helper.php

Importing[edit]

jimport( 'joomla.installer.helper' );

Source Body[edit]

function splitSql($sql)
{
        $db =& JFactory::getDBO();
        return $db->splitSql($sql);
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />