File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 23
23
class MySQL {
24
24
25
25
// Base variables
26
- private $ lastError ; // Holds the last error
27
- private $ lastQuery ; // Holds the last query
28
- private $ result ; // Holds the MySQL query result
29
- private $ records ; // Holds the total number of records returned
30
- private $ affected ; // Holds the total number of records affected
31
- private $ rawResults ; // Holds raw 'arrayed' results
32
- private $ arrayedResult ; // Holds an array of the result
26
+ public $ lastError ; // Holds the last error
27
+ public $ lastQuery ; // Holds the last query
28
+ public $ result ; // Holds the MySQL query result
29
+ public $ records ; // Holds the total number of records returned
30
+ public $ affected ; // Holds the total number of records affected
31
+ public $ rawResults ; // Holds raw 'arrayed' results
32
+ public $ arrayedResult ; // Holds an array of the result
33
33
34
34
private $ hostname ; // MySQL Hostname
35
35
private $ username ; // MySQL Username
You can’t perform that action at this time.
0 commit comments