Code Duplication    Length = 9-9 lines in 2 locations

includes/db/DatabaseOracle.php 2 locations

@@ 517-525 (lines=9) @@
514
		}
515
	}
516
517
	function lastError() {
518
		if ( $this->mConn === false ) {
519
			$e = oci_error();
520
		} else {
521
			$e = oci_error( $this->mConn );
522
		}
523
524
		return $e['message'];
525
	}
526
527
	function lastErrno() {
528
		if ( $this->mConn === false ) {
@@ 527-535 (lines=9) @@
524
		return $e['message'];
525
	}
526
527
	function lastErrno() {
528
		if ( $this->mConn === false ) {
529
			$e = oci_error();
530
		} else {
531
			$e = oci_error( $this->mConn );
532
		}
533
534
		return $e['code'];
535
	}
536
537
	function affectedRows() {
538
		return $this->mAffectedRows;