- 博客(3)
- 收藏
- 关注
转载 java.sql.SQLException: ORA-28040: No matching authentication protocol
使用FineReport连接Oracle时,出现如下日志: 严重:java.sql.SQLException: ORA-28040: No matching authentication protocol at java.util.concurrent.FutureTask.report(Unknown Source) at java.util.concurrent.FutureT...
2019-07-23 11:08:00 1818
转载 SQL_50题
--1、查询“1001”课程比“1002”课程成绩高的所有学生的学号;select a.S# from (select S#,score from sc where C#=1001) a, (select S#,score from sc where C# = 1002) b where a.score>b.score and ...
2019-07-19 16:07:00 344
转载 Java多线程之冰山一角
一. 多线程原理 线程类: //继承线程类,重写run方法 public class MyThread extends Thread{ public void run(){ for (int i = 0; i < 100; i++) { System.out.println("i="+i); } ...
2018-08-19 22:02:00 108
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人