Code Duplication    Length = 9-9 lines in 2 locations

includes/db/DatabaseOracle.php 2 locations

@@ 505-513 (lines=9) @@
502
		}
503
	}
504
505
	function lastError() {
506
		if ( $this->mConn === false ) {
507
			$e = oci_error();
508
		} else {
509
			$e = oci_error( $this->mConn );
510
		}
511
512
		return $e['message'];
513
	}
514
515
	function lastErrno() {
516
		if ( $this->mConn === false ) {
@@ 515-523 (lines=9) @@
512
		return $e['message'];
513
	}
514
515
	function lastErrno() {
516
		if ( $this->mConn === false ) {
517
			$e = oci_error();
518
		} else {
519
			$e = oci_error( $this->mConn );
520
		}
521
522
		return $e['code'];
523
	}
524
525
	function affectedRows() {
526
		return $this->mAffectedRows;