PHPLights/Documentation/Interfaces/LsDBStmtIface

From Linuxnetworks
Jump to: navigation, search

Synopsis

interface LsDBStmtIface
{
  public function __construct( $handle );
  public function execute( array $binds = array() );
  public function & fetch( $style = LsDBStmt::Assoc );
  public function nextResult();
}

Description

Public functions

__construct()

public function __construct( $handle );

execute()

public function execute( array $binds = array() );

fetch()

public function & fetch( $style = LsDBStmt::Assoc );

nextResult()

public function nextResult();



Back to Overview