API16

JDatabaseMySQL/select: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 50: Line 50:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=select
  category=select
  category=JDatabaseMySQL
  category=JDatabaseMySQL
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:28, 25 March 2017

Description

Select a database for use


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

Syntax

select($database)
Parameter Name Default Value Description
$database $database

Returns

boolean True if the database has been successfully selected

Defined in

libraries/joomla/database/database/mysql.php

Importing

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

Source Body

public function select($database)
{
        if (!$database) {
                return false;
        }

        if (!mysql_select_db($database, $this->_connection)) {
                $this->_errorNum = 3;
                $this->_errorMsg = 'Could not connect to database';
                return false;
        }

        return true;
}


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

Examples

Code Examples