Oracle
 sql >> डेटाबेस >  >> RDS >> Oracle

अजाक्स का उपयोग कर ओरेकल एपेक्स टेबुलर फॉर्म पर पंक्ति सत्यापन द्वारा पंक्ति कैसे करें?

मैं इसे कैसे हल करने की कोशिश करूंगा। ध्यान दें कि इसमें सभी (कोई भी?) घटना या बहुत अधिक त्रुटि प्रबंधन शामिल नहीं है। आपको इसे स्वयं थोड़ा विस्तृत करना होगा। उदाहरण के लिए मैंने चयनकर्ता के लिए इनपुट का उपयोग किया, आपको "चयन" की आवश्यकता होगी। सरणियाँ मेल नहीं खा सकती हैं। आपको पूरी तरह से अन्य चयनकर्ता की आवश्यकता हो सकती है जैसे कि td[headers] द्वारा। हो सकता है कि आपकी वापसी वस्तु को अन्य या अधिक मान रखने की आवश्यकता होगी। आपके जेएस को और अधिक विस्तार की आवश्यकता हो सकती है।
फिर भी यह आपको शुरू करने के लिए एक अच्छा आधार प्रदान करेगा!

जावास्क्रिप्ट:

function validaterows(){
  var arrf01 = [], arrf02 = [];

  //fetch all the values from the source columns and put them in
  //a javascript array.
  $("input[name=f03]").each(function(){
    arrf01.push($v(this));
  });

  $("input[name=f04]").each(function(){
    arrf02.push($v(this));
  });

  //provide the constructed arrays to the on-demand process by using
  //the global f## arrays
  apex.server.process ( "MY_PROCESS", {
      f01: arrf01
    , f02: arrf02
  }, {
  , success: function( pData ) { 
      //pData should be an object, because jquery will have parsed the returned json-string
      apex.debug(pData);

      $.each(pData.validationArray, function(index, value){
        if ( value === 'INVALID' ) {
          // do something here when the result is invalid
          // maybe you want to color something red for example
          alert('The data at row '+index+' is not valid!');
        };
      });

      }
  } );
}

ऑन-डिमांड plsql प्रक्रिया:

DECLARE
  l_return VARCHAR2(4000);
BEGIN
  FOR i IN apex_application.g_f01.count
  LOOP
    -- remember: the f## arrays are varchar arrays. Important for comparisons.
    -- Also take into account that the values could NOT be numeric at all.
    -- you'll probably want to run each value through an is-number check or else 
    -- you'll run into ORA errors
    IF to_number(apex_application.g_f01(i)) > to_number(apex_application.g_f02(i))
    THEN
      l_return := l_return || ',"INVALID"';
    ELSE
      l_return := l_return || ',"VALID"';
    END IF;
  END LOOP;

  IF l_return IS NOT NULL
  THEN
    -- create a json string 
    -- holds an object with 1 property (validationArray) with the value being
    -- an array holding a value for each row submitted
    l_return := '{"validationArray":['||LTRIM(l_return, ',')||']}';
  END IF;

  -- write the output to the buffer
  htp.p(l_return);
END;



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. सीएलओबी के रूप में एक फ़ील्ड के साथ ऑरैकल इंसर्ट स्क्रिप्ट कैसे लिखें?

  2. तालिका कॉलम परिणाम से एसक्यूएल कस्टम टेक्स्ट प्रदर्शित करें

  3. Oracle NULL में अपडेट नहीं हो सकता

  4. Oracle में एक महीने में दिनों की संख्या प्राप्त करने के 2 तरीके

  5. Oracle SQL - मौजूद नहीं है - स्ट्रिंग मानों की सूची में मौजूद नहीं है