Commented out unused functions in database backend so we will not have to reimplement...
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / result.inc
index 22750b6d67979612f018f03994c09246a599a810..ce96b198482319f0baf6a8c2942fcf7b54b3f719 100644 (file)
@@ -30,6 +30,7 @@ function result($queryId, $sql) {
        }
 }
 
+/* DEPRECATED!
 function absolute($row) {
        if ($row > 0) {
 // positive row number
@@ -42,6 +43,7 @@ function absolute($row) {
                $this->exception("Cannot absolute position to row 0");
        }
 }
+*/
 
 function getRecord() {
        return $this->_currentRecord;
@@ -63,6 +65,7 @@ function getInt($column) {
        }
 }
 
+/* DEPRECATED!
 function getVariable($column) {
        return (int)$this->_currentRecord["$column"];
 
@@ -83,19 +86,22 @@ function getRow() {
        return $this->_currentRow + 1;
        }
 }
+*/
 
 function getNumRows() {
        return $this->_numRows;
 }
 
+/* DEPRECATED!
 function getNumFields() {
        return $this->_numFields;
 }
+*/
 
-function exception($errorMsg) {
+function exception($errorMsg) { //Internal only!
        die("<pre>SQLException: ".$msg."</pre>");
 }
 
 }
 
-?>
\ No newline at end of file
+?>
This page took 0.110209 seconds and 4 git commands to generate.