Code Duplication    Length = 9-9 lines in 2 locations

includes/db/DatabaseOracle.php 2 locations

@@ 443-451 (lines=9) @@
440
		}
441
	}
442
443
	function lastError() {
444
		if ( $this->mConn === false ) {
445
			$e = oci_error();
446
		} else {
447
			$e = oci_error( $this->mConn );
448
		}
449
450
		return $e['message'];
451
	}
452
453
	function lastErrno() {
454
		if ( $this->mConn === false ) {
@@ 453-461 (lines=9) @@
450
		return $e['message'];
451
	}
452
453
	function lastErrno() {
454
		if ( $this->mConn === false ) {
455
			$e = oci_error();
456
		} else {
457
			$e = oci_error( $this->mConn );
458
		}
459
460
		return $e['code'];
461
	}
462
463
	function affectedRows() {
464
		return $this->mAffectedRows;