Die mysqli_stmt Klasse

(PHP 5, PHP 7)

Einführung

Repräsentiert ein Prepared Statement.

Klassenbeschreibung

mysqli_stmt {
/* Eigenschaften */
int $errno;
string $error;
string $sqlstate;
/* Methoden */
public __construct ( mysqli $link [, string $query ] )
public attr_get ( int $attr ) : int
public attr_set ( int $attr , int $mode ) : bool
public bind_param ( string $types , mixed &$var1 [, mixed &$... ] ) : bool
public bind_result ( mixed &$var1 [, mixed &$... ] ) : bool
public close ( ) : bool
public data_seek ( int $offset ) : void
public execute ( ) : bool
public fetch ( ) : bool
public free_result ( ) : void
public get_warnings ( ) : object
public more_results ( ) : bool
public next_result ( ) : bool
public num_rows ( ) : int
public prepare ( string $query ) : mixed
public reset ( ) : bool
public send_long_data ( int $param_nr , string $data ) : bool
public store_result ( ) : bool
}

Inhaltsverzeichnis