हमारी बातचीत से, आप कमांड प्रॉम्प्ट से टेलनेट और डेटाबेस से कनेक्ट करने में सक्षम हैं। Jdbcurl के माध्यम से जाने के बाद, मुझे त्रुटि मिली है।
लोकलहोस्ट:1521/xe होना चाहिए लोकलहोस्ट:1521:xe यदि xe आपके डेटाबेस के लिए SID है।
इस कोड को
. से बदलेंconn = DriverManager.getConnection(
"jdbc:oracle:thin:@localhost:1521/xe", "scott", "tiger");
करने के लिए
conn = DriverManager.getConnection(
"jdbc:oracle:thin:@localhost:1521:xe", "scott", "tiger");
इस लेख