forked from pedro3005/whube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql.php
78 lines (75 loc) · 1.83 KB
/
sql.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
* SQL class file, All SQL model work lies herein
*
* Super awesome SQL interface class
* @author Paul Tagliamonte <paultag@whube.com>
* @version 1.0
* @license: AGPLv3
*/
if ( ! class_exists ( "sql" ) ) {
class sql {
var $link;
var $result;
function __construct( $connect = true ) {
if ( $connect ) {
$path = dirname(__FILE__) . "/";
include( $path . "../conf/sql.php" );
$this->connect( $mysql_host, $mysql_user, $mysql_pass, $mysql_data );
}
}
function test() {
$path = dirname(__FILE__) . "/";
include( $path . "../conf/sql.php" );
return $this->test_auth( $mysql_host, $mysql_user, $mysql_pass, $mysql_data );
}
function test_fail() {
echo "\n\nConnection Failed! Bad auth! check conf/sql.php!\n\n";
$this->fail = true;
}
function test_auth( $host, $name, $pass, $db ) {
$this->fail = false;
$link = mysql_connect(
$host,
$name,
$pass
) or $this->test_fail();
return ! $this->fail;
}
function __destruct() {
$this->destruct();
}
function destruct() {
// mysql_close( $this->link );
}
function connect( $host, $name, $pass, $db ) {
$this->link = mysql_connect(
$host,
$name,
$pass
) or die( mysql_error() );
mysql_select_db( $db ) or die( mysql_error() ); // Lets get our Database
}
function getNextRow() {
if ( $this->result != NULL ) {
if ( $row = mysql_fetch_array( $this->result ) ) {
return $row;
} else {
return NULL;
}
} else {
return NULL;
}
}
function numrows() {
return mysql_num_rows($this->result);
}
function getLastID() {
return mysql_insert_id( $this->link );
}
function query( $query ) {
$this->result = mysql_query($query) or die( mysql_error() ); // Preform the Query.
}
}
}
?>