Fix for edit tables declare, add return function for DB IO

DB IO return functions for inserted primary key and extended RETURNING
data

Add dev set for html options grouping addition for nested arrays/object
lists

Fix edit tables edit access uid declaration
This commit is contained in:
Clemens Schwaighofer
2020-09-07 07:09:23 +09:00
parent 7165a50b4d
commit 0ec0007569
4 changed files with 52 additions and 11 deletions

View File

@@ -1992,12 +1992,6 @@ class IO extends \CoreLibs\Basic
return $this->db_functions->__dbArrayParse($text, $output);
}
// METHOD: dbSqlEscape
// WAS : db_sql_escape
// PARAMS: value -> to escape data
// kbn -> escape trigger type
// RETURN: escaped value
// DESC : clear up any data for valid DB insert
/**
* clear up any data for valid DB insert
* @param int|float|string $value to escape data
@@ -2025,6 +2019,29 @@ class IO extends \CoreLibs\Basic
}
return $value;
}
/**
* return current set insert_id as is
* @return string|int|null Primary key value, most likely int
* Empty string for unset
* Null for error
*/
public function getInsertPK()
{
return $this->insert_id;
}
/**
* return the extended insert return string set
* Most likely Array
* @return array|string|null RETURNING values as array
* Empty string for unset
* Null for error
*/
public function getInsertReturn()
{
return $this->insert_id_ext;
}
} // end if db class
// __END__