skip to Main Content

Send timestamp array parameter to PostgreSQL function

i have developed a pgplsql function to receive array of dates the return the maximum date, but its not able to call the function: select 1, arcfm.array_max_date('{2022-02-03, 2022-06-05}'::timestamp[]) as max_date_time; CREATE OR REPLACE FUNCTION arcfm.array_max_date(in dates_array timestamp[])     RETURNS timestamp     LANGUAGE…

VIEW QUESTION

Call to undefined function create_function() – PHP

I get this message on the front page of my website: Fatal error: Uncaught Error: Call to undefined function create_function() in /customers/7/e/7/jovobytes.be/httpd.www/wp-content/themes/inovado/framework/inc/widgets/custommenu.php:67 Stack trace: #0 /customers/7/e/7/jovobytes.be/httpd.www/wp-content/themes/inovado/functions.php(39): include_once() #1 /customers/7/e/7/jovobytes.be/httpd.www/wp-settings.php(566): include('/customers/7/e/...') #2 /customers/7/e/7/jovobytes.be/httpd.www/wp-config.php(96): require_once('/customers/7/e/...') #3 /customers/7/e/7/jovobytes.be/httpd.www/wp-load.php(50): require_once('/customers/7/e/...') #4 /customers/7/e/7/jovobytes.be/httpd.www/wp-blog-header.php(13): require_once('/customers/7/e/...') #5…

VIEW QUESTION

Take value execute class string – PHP

I have class for take values inside loop as this : $db_user->take_phone[1]; Inside loop I need take different values for the class $a=array("phone","name","street"); foreach($a as $aa) { echo $db_user->take_'$aa.'[1] } As you can see inside the loop I need to…

VIEW QUESTION
Back To Top
Search