কিভাবে ওরাকল এপেক্স এ Dynamically রিপোর্ট SQL Query পরিবর্তন করবেন??
Oracle Apex Application রিপোর্টে SQL Query Dynamically পরিবর্তন করতে আপনি Pl / SQL Function Returning SQL Query ব্যবহার করতে পারেন।
Dynamically রিপোর্ট করা SQL Query পরিবর্তন করতে এই পদক্ষেপগুলি অনুসরণ করুন:
Name= P85_TABLE_NAME
Type= Select List
List of Values
Type = SQL Query
SQL Query =
SELECT TABLE_NAME D, TABLE_NAME R FROM USER_TABLES;
Location = Local Database
Type = Function Body returning SQL Query
Language = PL/SQL
PL/SQL Function Body returning SQL Query =
DECLARE
l_str VARCHAR2 (4000);
BEGIN
l_str :=
CASE
WHEN :P85_TABLE_NAME IS NULL THEN 'select * from part_7'
ELSE 'select * from ' || :P85_TABLE_NAME
END;
RETURN l_str;
END;
আইটেমের বিপরীতে পৃষ্ঠাটি জমা দেওয়ার জন্য আমি একটি গতিশীল অ্যাকশন তৈরি করব।
Name- Submit Page
Event = Change
Selection Type = Item(s)
Item(s) = P2_SQL_CODE
Action = Submit Page
আমরা একটি গতিশীল উপায়ে আমাদের এসকিউএল কোয়েরি রিপোর্ট শেষ করেছি। এখন আমাদের Pl/Sql ফাংশন বডি রিটার্নিং Sql কোয়েরি সঠিকভাবে সম্পন্ন হয়েছে? আমি দেখব.
🔗 Demo Application-
URL- Demo Application
Username - demo, Pass- demo
I hope everyone will like it. Please watch the full video,
Comment on any of your problems, I will try my best to solve the problem, In-Shah Allah. Everyone's cooperation is desirable. Visit my blog site, new technology related videos, you will get different types of tutorials of Oracle Apex, and hopefully, you can use them in your daily work.
Please stay tuned by subscribing to the YouTube channel, and encourages new videos to be uploaded.
=================
Visit my site to get more collaborative posts about Oracle Apex and subscribe to my YouTube channel. Thanks.
Comment on any of your issues, I will try my best to solve the problem, In-Shah Allah. Everyone's cooperation is desirable.
Visit my blog site, new technology-related videos, you will get different types of tutorials of Oracle Apex, and hopefully, you can use them in your daily work.
==============================
🙍🏾 Md jABER HOSSEN
📲 Mobile- +8801760688286
📨 Email- jaberit786@gmail.com
🌐 FB- facebook.com/mdjaber.hossen1
Please Subscribe to My Channel
Many thanks for visiting the site.
Then Enjoy.........................

0 Comments