2013-01-29 Miguel de Dios <miguel.dedios@artica.es>
* godmode/menu.php, include/db/oracle.php, include/db/mysql.php, include/functions_categories.php, include/functions_db.php, include/functions_menu.php: improved the code style. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7544 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
e68a23b6cb
commit
752fb3ae6f
|
@ -1,3 +1,9 @@
|
|||
2013-01-29 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/menu.php, include/db/oracle.php, include/db/mysql.php,
|
||||
include/functions_categories.php, include/functions_db.php,
|
||||
include/functions_menu.php: improved the code style.
|
||||
|
||||
2013-01-29 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/reporting/visual_console_builder.wizard.php,
|
||||
|
|
|
@ -179,7 +179,9 @@ function mysql_db_get_row ($table, $field_search, $condition, $fields = false) {
|
|||
*/
|
||||
function mysql_db_get_all_rows_in_table($table, $order_field = "", $order = 'ASC') {
|
||||
if ($order_field != "") {
|
||||
return db_get_all_rows_sql ("SELECT * FROM `".$table."` ORDER BY ".$order_field . " " . $order);
|
||||
return db_get_all_rows_sql ("SELECT *
|
||||
FROM `".$table."`
|
||||
ORDER BY ".$order_field . " " . $order);
|
||||
}
|
||||
else {
|
||||
return db_get_all_rows_sql ("SELECT * FROM `".$table."`");
|
||||
|
|
|
@ -229,14 +229,14 @@ function oracle_db_process_sql($sql, $rettype = "affected_rows", $dbconnection =
|
|||
|
||||
$start = microtime (true);
|
||||
if ($dbconnection !== '') {
|
||||
if ($type[0] == 'INSERT'){
|
||||
if ($type[0] == 'INSERT') {
|
||||
$query = oci_parse($dbconnection, 'begin insert_id(:table_name, :sql, :out); end;');
|
||||
}
|
||||
// Prevent execution of insert_id stored procedure
|
||||
else if ($type[0] == '/INSERT'){
|
||||
else if ($type[0] == '/INSERT') {
|
||||
$query = oci_parse($dbconnection, substr($sql,1));
|
||||
}
|
||||
else{
|
||||
else {
|
||||
$query = oci_parse($dbconnection, $sql);
|
||||
}
|
||||
}
|
||||
|
@ -259,10 +259,10 @@ function oracle_db_process_sql($sql, $rettype = "affected_rows", $dbconnection =
|
|||
oci_bind_by_name($query,":out", $id, 32);
|
||||
}
|
||||
|
||||
if (!$autocommit){
|
||||
if (!$autocommit) {
|
||||
$result = oci_execute($query, OCI_NO_AUTO_COMMIT);
|
||||
}
|
||||
else{
|
||||
else {
|
||||
$result = oci_execute($query);
|
||||
}
|
||||
$time = microtime (true) - $start;
|
||||
|
@ -824,12 +824,12 @@ function oracle_recode_query ($sql, $values, $join = 'AND', $return = true) {
|
|||
}
|
||||
|
||||
$result = $pre_query.$sql.$query.$limit.$group.$order.$post_query;
|
||||
if ($return){
|
||||
if ($return) {
|
||||
return $result;
|
||||
}
|
||||
else{
|
||||
else {
|
||||
$result = oracle_db_process_sql($result);
|
||||
if ($result !== false){
|
||||
if ($result !== false) {
|
||||
for ($i=0; $i < count($result); $i++) {
|
||||
unset($result[$i]['RNUM']);
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
*
|
||||
* @return bool True or false if something goes wrong.
|
||||
*/
|
||||
function categories_delete_category ($id_category){
|
||||
function categories_delete_category ($id_category) {
|
||||
// Change the elements of this category to "without category"
|
||||
db_process_sql_update('tagente_modulo', array('id_category' => 0), array('id_category' => $id_category));
|
||||
db_process_sql_update('tnetwork_component', array('id_category' => 0), array('id_category' => $id_category));
|
||||
|
@ -44,7 +44,7 @@ function categories_delete_category ($id_category){
|
|||
*
|
||||
* @return mixed Int with the tag's count.
|
||||
*/
|
||||
function categories_get_category_count(){
|
||||
function categories_get_category_count() {
|
||||
return (int)db_get_value('count(*)', 'tcategory');
|
||||
}
|
||||
|
||||
|
|
|
@ -148,7 +148,7 @@ function db_pandora_audit($accion, $descripcion, $user_id = false, $ip = false,
|
|||
$accion = io_safe_input($accion);
|
||||
$descripcion = io_safe_input($descripcion);
|
||||
|
||||
switch ($config['dbtype']){
|
||||
switch ($config['dbtype']) {
|
||||
case "mysql":
|
||||
case "postgresql":
|
||||
$values = array('id_usuario' => $id,
|
||||
|
|
Loading…
Reference in New Issue