码迷,mamicode.com
首页 >  
搜索关键字:could not find driver    ( 34312个结果
老调重弹:JDBC系列 之 <驱动加载原理全面解析>
JDBC 驱动加载原理详解,Driver功能,DriverManager,jdbc.drivers,JDBC URL...
分类:数据库   时间:2014-06-19 13:07:52    阅读次数:435
Maximum Subarray
题目 Find the contiguous subarray within an array (containing at least one number) which has the largest sum. For example, given the array [?2,1,?3,4,?1,2,1,?5,4], the contiguous subarray [4,...
分类:其他好文   时间:2014-06-19 12:08:20    阅读次数:270
TNS-01201: Listener cannot find executablen 错误
最近在启动监听器的时候收到了TNS-01201: Listener cannot find executable...的错误提示。这个错误还真是一个一直没有碰到过的错误。咋一看还真不明白是怎么一回事呢。下面是错误的具体描述与解决方案。1、故障描述#在启动监听器时收到了TNS-01201错误,监听器无法找到可执行文件oracle@DevDB02:~> lsnrctl start LISTENER_U...
分类:其他好文   时间:2014-06-19 11:36:26    阅读次数:408
Rotate Image
题目 You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (clockwise). Follow up: Could you do this in-place? 方法 矩阵坐标的转换,循环替换。 public voi...
分类:其他好文   时间:2014-06-16 11:28:03    阅读次数:199
Linux find命令详解
一、find 命令格式1、find命令的一般形式为;find pathname -options [-print -exec -ok ...]2、find命令的参数;pathname: find命令所查找的目录路径。例如用.来表示当前目录,用/来表示系统根目录。-print: find命令将匹配的文...
分类:系统相关   时间:2014-06-16 07:56:44    阅读次数:356
java 数据库两种连接方法
package jdbc;import java.sql.*;public class ConnectionDemo2 {public static final String DBDRIVER="com.mysql.jdbc.Driver";public static final String DB...
分类:数据库   时间:2014-06-16 06:48:24    阅读次数:182
Search for a Range
题目 Given a sorted array of integers, find the starting and ending position of a given target value. Your algorithm's runtime complexity must be in the order of O(log n). If the target i...
分类:其他好文   时间:2014-06-15 16:53:32    阅读次数:177
[LeetCode] [First Missing Positive 2012-03-08]
Given an unsorted integer array, find the first missing positive integer.For example, Given [1,2,0] return 3, and [3,4,-1,1] return 2.Your algorithm s...
分类:其他好文   时间:2014-06-13 20:25:38    阅读次数:241
java_查找符合的文件。
packageIOtest;importjava.io.File;publicclassTestFile{//inlinuxprivateFilefoder=newFile("/home/eblly");TestFile(){find(foder);System.out.println("=====...
分类:编程语言   时间:2014-06-13 19:55:49    阅读次数:342
[leetcode]Maximum Depth of Binary Tree @ Python
原题地址:https://oj.leetcode.com/problems/maximum-depth-of-binary-tree/题意:Given a binary tree, find its maximum depth.The maximum depth is the number of n...
分类:编程语言   时间:2014-06-12 13:55:34    阅读次数:210
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!