db_master
in package
Class db_master
Tags
Table of Contents
Properties
- $qry : mixed
- $qry_closed : bool
- $qry_count : int
- $show_errors : bool
- $conn : mysqli
Methods
- __construct() : mixed
- __destruct() : mixed
- affectedRows() : mixed
- Gibt die Anzahl der betroffenen Reihen (Update) aus
- close() : bool
- Schliesst die Datenbankverbindung
- error() : void
- Löst eine Fehlermeldung aus
- escape() : string
- Escapet einen String
- fetchAll() : array<string|int, mixed>
- Gibt alle Einträge als Array zurück
- fetchArray() : array<string|int, mixed>
- Gibt einen Eintrag als Array zurück
- lastInsertID() : int|string
- Gibt die ID, des letzten Inserts aus
- numRows() : mixed
- Gibt die Anzahl der gefundenen Zeilen zurück
- query() : $this
- Führt ein Query aus
- unescape() : string
- Unescapes a string
- _gettype() : string
- Prüft, welchen Typ ein Parameter hat
Properties
$qry
protected
mixed
$qry
$qry_closed
protected
bool
$qry_closed
= true
$qry_count
protected
int
$qry_count
= 0
$show_errors
protected
bool
$show_errors
= false
$conn
private
mysqli
$conn
Methods
__construct()
public
__construct() : mixed
__destruct()
public
__destruct() : mixed
affectedRows()
Gibt die Anzahl der betroffenen Reihen (Update) aus
public
affectedRows() : mixed
close()
Schliesst die Datenbankverbindung
public
close() : bool
Return values
boolerror()
Löst eine Fehlermeldung aus
public
error(string $type, string $msg[, string $hidden = '' ]) : void
Parameters
- $type : string
-
- Typ der Fehlermeldung
- $msg : string
-
- Nachricht der Fehlermeldung
- $hidden : string = ''
escape()
Escapet einen String
public
escape(string $val) : string
Parameters
- $val : string
Return values
stringfetchAll()
Gibt alle Einträge als Array zurück
public
fetchAll([ $callback = null ]) : array<string|int, mixed>
Parameters
Return values
array<string|int, mixed>fetchArray()
Gibt einen Eintrag als Array zurück
public
fetchArray() : array<string|int, mixed>
Return values
array<string|int, mixed>lastInsertID()
Gibt die ID, des letzten Inserts aus
public
lastInsertID() : int|string
Return values
int|stringnumRows()
Gibt die Anzahl der gefundenen Zeilen zurück
public
numRows() : mixed
query()
Führt ein Query aus
public
query(string $qry) : $this
Parameters
- $qry : string
Return values
$thisunescape()
Unescapes a string
public
unescape(string $val) : string
Parameters
- $val : string
-
The string to unescape
Return values
string —The unescaped string
_gettype()
Prüft, welchen Typ ein Parameter hat
private
_gettype( $var) : string