API16

Difference between revisions of "JDatabaseMySQL/getCollation"

From Joomla! Documentation

< API16:JDatabaseMySQL
(New page: ===Description=== Assumes database collation in use by sampling one text field in one table <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JDatabase...)
 
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JDatabaseMySQL/getCollation|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JDatabaseMySQL/getCollation}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 35: Line 35:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JDatabaseMySQL/getCollation|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JDatabaseMySQL/getCollation}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 50: Line 50:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Revision as of 22:00, 12 May 2013

The "API16" 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]

Assumes database collation in use by sampling one text field in one table

[<! removed edit link to red link >]

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

Syntax[edit]

getCollation()


Returns[edit]

string Collation in use

Defined in[edit]

libraries/joomla/database/database/mysql.php

Importing[edit]

jimport( 'joomla.database.database.mysql' );

Source Body[edit]

public function getCollation ()
{
        if ($this->hasUTF()) {
                $this->setQuery('SHOW FULL COLUMNS FROM #__content');
                $array = $this->loadAssocList();
                return $array['4']['Collation'];
        } else {
                return "N/A (mySQL < 4.1.2)";
        }
}

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

Examples[edit]

<CodeExamplesForm />