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

डेटाबेस में XML डेटा को कैसे पढ़ें और स्टोर करें

एक प्रश्न बनाने के लिए आपको PreparedStatement का उपयोग करना चाहिए। ।

एक नमूना उपयोग:

String query = "INSERT INTO some_table (col1,col2,col3) values (?,?,?)
PreparedStatement stmt = null;
stmt = con.prepareStatement(query);
//now use the values from the xml and bind them to the statement
stmt.setString(someStringValue);
stmt.setInt(someIntValue);
...
stmt.execute();



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. पायथन cx_Oracle ने qmark के साथ स्टेटमेंट तैयार किया

  2. दो अन्य विशेषताओं से Oracle डेटाबेस में एक नई विशेषता बनाना

  3. Oracle डेटाबेस में सेलेक्ट INTO स्टेटमेंट के साथ बल्क कलेक्ट क्लॉज का उपयोग कैसे करें

  4. पीएल/एसक्यूएल ट्रिगर मुद्दे

  5. Oracle तालिका से मूल्य गणना प्राप्त करना