From 9e22ec928b9534ea9db0d18bf685fb0d357fbad2 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 18 Apr 2013 21:06:31 -0700 Subject: more umbilical cutting --- doc/html/classdba__driver.html | 414 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 414 insertions(+) create mode 100644 doc/html/classdba__driver.html (limited to 'doc/html/classdba__driver.html') diff --git a/doc/html/classdba__driver.html b/doc/html/classdba__driver.html new file mode 100644 index 000000000..1e536832c --- /dev/null +++ b/doc/html/classdba__driver.html @@ -0,0 +1,414 @@ + + + + + + +The Red Project: dba_driver Class Reference + + + + + + + + + + + + + +
+
+ + + + + + + +
+
The Red Project +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ + +
+
+Inheritance diagram for dba_driver:
+
+
+ + +dba_mysql +dba_mysqli + +
+ + + + + + + + + + + + +

+Public Member Functions

 connect ($server, $user, $pass, $db)
 
 q ($sql)
 
 escape ($str)
 
 close ()
 
 __construct ($server, $user, $pass, $db, $install=false)
 
+ + + + + +

+Public Attributes

 $connected = false
 
 $error = false
 
+ + + + + + + +

+Protected Attributes

 $debug = 0
 
 $driver
 
 $db
 
+

Constructor & Destructor Documentation

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
dba_driver::__construct ( $server,
 $user,
 $pass,
 $db,
 $install = false 
)
+
+ +
+
+

Member Function Documentation

+ +
+
+ + + + + +
+ + + + + + + +
dba_driver::close ()
+
+abstract
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
dba_driver::connect ( $server,
 $user,
 $pass,
 $db 
)
+
+abstract
+
+ +

Referenced by __construct().

+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
dba_driver::escape ( $str)
+
+abstract
+
+ +
+
+ +
+
+ + + + + +
+ + + + + + + + +
dba_driver::q ( $sql)
+
+abstract
+
+ +
+
+

Member Data Documentation

+ +
+
+ + + + +
dba_driver::$connected = false
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
dba_driver::$db
+
+protected
+
+
+ +
+
+ + + + + +
+ + + + +
dba_driver::$debug = 0
+
+protected
+
+ +
+
+ +
+
+ + + + + +
+ + + + +
dba_driver::$driver
+
+protected
+
+ +
+
+ +
+
+ + + + +
dba_driver::$error = false
+
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ -- cgit v1.2.3 From 552f03122c9ec066f5728fc4629d155937fd3620 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 22 Apr 2013 20:02:21 -0700 Subject: db abstraction layer --- doc/html/classdba__driver.html | 46 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 44 insertions(+), 2 deletions(-) (limited to 'doc/html/classdba__driver.html') diff --git a/doc/html/classdba__driver.html b/doc/html/classdba__driver.html index 1e536832c..28954f7fa 100644 --- a/doc/html/classdba__driver.html +++ b/doc/html/classdba__driver.html @@ -135,8 +135,10 @@ Public Member Functions    close ()   - __construct ($server, $user, $pass, $db, $install=false) + __construct ($server, $user, $pass, $db, $install=false)   + install ($server, $user, $pass, $db) +  @@ -293,6 +295,46 @@ Protected Attributes

Public Attributes

+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
dba_driver::install ( $server,
 $user,
 $pass,
 $db 
)
+
+ +

Referenced by __construct().

+
@@ -350,7 +392,7 @@ Protected Attributes -- cgit v1.2.3 From ac64c93bf8714550d47a546faec59cfea0b4daeb Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 26 Apr 2013 15:09:35 -0700 Subject: doc update --- doc/html/classdba__driver.html | 61 ++++++++++++++++++++++++++---------------- 1 file changed, 38 insertions(+), 23 deletions(-) (limited to 'doc/html/classdba__driver.html') diff --git a/doc/html/classdba__driver.html b/doc/html/classdba__driver.html index 28954f7fa..59545f864 100644 --- a/doc/html/classdba__driver.html +++ b/doc/html/classdba__driver.html @@ -139,6 +139,10 @@ Public Member Functions    install ($server, $user, $pass, $db)   + dbg ($dbg) +  + __destruct () +  @@ -151,8 +155,6 @@ Public Attributes Protected Attributes - -

Public Attributes

 $debug = 0
 
 $driver
 
 $db
 
@@ -199,6 +201,21 @@ Protected Attributes
+
+ + +
+
+ + + + + + + +
dba_driver::__destruct ()
+
+

Member Function Documentation

@@ -223,6 +240,8 @@ Protected Attributes
+

Referenced by __destruct().

+
@@ -271,6 +290,22 @@ Protected Attributes

Referenced by __construct().

+ + + +
+
+ + + + + + + + +
dba_driver::dbg ( $dbg)
+
+
@@ -392,7 +427,7 @@ Protected Attributes @@ -414,26 +449,6 @@ Protected Attributes
-
- - -
-
- - - - - -
- - - - -
dba_driver::$driver
-
-protected
-
-
-- cgit v1.2.3 From 946554ff4b03d81f32375832b8b50883a3ffeedf Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 10 May 2013 03:52:06 -0700 Subject: doc update --- doc/html/classdba__driver.html | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) (limited to 'doc/html/classdba__driver.html') diff --git a/doc/html/classdba__driver.html b/doc/html/classdba__driver.html index 59545f864..806abb0cc 100644 --- a/doc/html/classdba__driver.html +++ b/doc/html/classdba__driver.html @@ -127,16 +127,16 @@ Inheritance diagram for dba_driver: - - + + - - + + @@ -159,7 +159,7 @@ Protected Attributes

Public Member Functions

 connect ($server, $user, $pass, $db)
 
 connect ($server, $port, $user, $pass, $db)
 
 q ($sql)
 
 escape ($str)
 
 close ()
 
 __construct ($server, $user, $pass, $db, $install=false)
 
 __construct ($server, $port, $user, $pass, $db, $install=false)
 
 install ($server, $user, $pass, $db)
 
 dbg ($dbg)
 

Constructor & Destructor Documentation

- +
@@ -169,6 +169,12 @@ Protected Attributes + + + + + + @@ -244,7 +250,7 @@ Protected Attributes - +
  $server,
 $port,
@@ -257,6 +263,12 @@ Protected Attributes + + + + + + @@ -288,7 +300,7 @@ Protected Attributes
  $server,
 $port,
-

Referenced by __construct().

+

Referenced by __construct().

@@ -368,7 +380,7 @@ Protected Attributes
-

Referenced by __construct().

+

Referenced by __construct().

@@ -427,7 +439,7 @@ Protected Attributes -- cgit v1.2.3 From 34526e82531c67995e25cf04abce0d927ce22ffd Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 10 May 2013 03:59:11 -0700 Subject: doc cleanup --- doc/html/classdba__driver.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/html/classdba__driver.html') diff --git a/doc/html/classdba__driver.html b/doc/html/classdba__driver.html index 806abb0cc..252047670 100644 --- a/doc/html/classdba__driver.html +++ b/doc/html/classdba__driver.html @@ -4,7 +4,7 @@ -The Red Project: dba_driver Class Reference +The Red Matrix: dba_driver Class Reference @@ -30,7 +30,7 @@ Logo -
The Red Project +
The Red Matrix
-- cgit v1.2.3 From 5e4b9d7766ceffd19785f14443cc1b4d4f675d4e Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 14 May 2013 21:25:58 -0700 Subject: disable pcss when installing since modules don't yet work and pcss uses the view module, plus weekly doc update --- doc/html/classdba__driver.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/html/classdba__driver.html') diff --git a/doc/html/classdba__driver.html b/doc/html/classdba__driver.html index 252047670..ffac32e66 100644 --- a/doc/html/classdba__driver.html +++ b/doc/html/classdba__driver.html @@ -28,7 +28,7 @@ - +
The Red Matrix
-- cgit v1.2.3 From 8cd9a2c3a944e804c72ef461df801116c6b44ac7 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 28 Nov 2013 19:37:39 -0800 Subject: doc updates --- doc/html/classdba__driver.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/html/classdba__driver.html') diff --git a/doc/html/classdba__driver.html b/doc/html/classdba__driver.html index ffac32e66..e70d8bf1f 100644 --- a/doc/html/classdba__driver.html +++ b/doc/html/classdba__driver.html @@ -28,7 +28,7 @@ - +
The Red Matrix
-- cgit v1.2.3