`
文章列表
最近开始学习Python,于是想用Python写一些测试脚本。公司现有的数据库是Oracle,就涉及到一个如何用Python去连接Oracle的问题。Google了一下,问题解决。本着好脑子不如烂笔头的原则,把安装步骤记录下来。 1 安装Python(这个基本上是废话) 2 安装cx_Oracle, 这个是一个Python的扩展包,用来访问Oracle数据库的。Windows的安装文件可以到http://cx-oracle.sourceforge.net/这里去下载。 3 下载Oracle客户端(Oracle Instant Client),这个是Python扩展包所需要的。可以到htt ...
突然心血来潮想在很久没升级过ruby的mac电脑上安装新版的ruby1.9.3,没想到还非了一番周折。 1 安装 rvm $ bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer) 重新加载shell环境: $ source ~/.bash_profile $ rvm requirements 2 安装c编译器 我没有安装xcode,所以需要单独一个c编译器。如果你的系统是10.7,网上很多人也说会因为编 ...
  昨天去了一家做手机map的公司去面试,大体上是用Android开发。到了公司后先让我填写了一份职位申请表,拿到表格后有种似曾相识的感觉,貌似以前在另外一家公司见过同样的职位申请表,呵呵。填完表后就是照例笔试答题了。题目还算不少,都是java相关的,比较基础。记得题目全是中文提问的,但面试的是一家美资公司(至少全英文工作环境,manager也说自己的公司是纯美资),还是努力用英文答了。答完题后HR来和我聊了聊,都是一些个人的基本事项,然后让我简单说了几句英语,呵呵。   先列举一些笔试的题目吧,请各位也看看,如果是你们会怎么答,如果你们是面试官希望要什么样的答案。   简答题:   1. ...
    A Java compiler converts source instructions for the Java virtual machine. The virtual machine code is stored in a class file with a .class extension. Each class file contains the definition and implementation code for one class or interface. These class files must be interpreted by a p ...
Scrollable Result Sets   Statement stat = conn.createStatement(type, concurrency);   PreparedStatement stat = conn.prepareStatement(command, type, concurrency);   Type Values   Value Explanation TYPE_FORWARD_ONLY The result set is not scrollable (default). TYPE_SCROLL_INS ...
Executing SQL Statements   Then call the executeUpdate method of the Statement class:   stat.executeUpdate(command); The executeUpdate method returns a count of the rows that were affected by the SQL statement, or zero for statements that do not return a row count.   The exec ...
Registering the Driver Class   There are 3 ways to register a driver to your java program.   1 A JAR file can be automatically register if it contains a file name META-INF/services/java.sql.Driver   2 Load the driver class in your java program. For example: Class.forName("oracle.jdbc ...
前两天去一家公司面试,问到的都是一些最基础的问题。但不知道是因为紧张还是其他什么愿意,有几道题给出的答案貌似不是面试官想要的。现在列举出来,温故知新一下。   1 哪些是check异常,哪些是uncheck异常?   The Java Language Specification calls any exception that derives from the class Error or the class RuntimeException an unchecked exception. All other exceptions are called checked excep ...
gem install mislav-will_paginate --source http://gems.github.com
  我是一个普通大学毕业的学生,由于种种原因吧来到大连的*软公司工作了。本来是天津人,想在京津一带,但被公司招聘时所说的"大连这边软件行业比较发达的话"忽悠到这边来了。   刚来时本来抱着好好学的东西,在那干都是一样的态度。结果刚来的时候给我们培训主机 COBOL JCL PLI等,后来又是什么CMM VBA等东西。就这样半年过去了,一个项目都没做。之前招的时候我们是做Java的,自己虽然技术不是很强,但在这半年的时间里自己学了Struts Hibernate Spring等框架(大学生刚毕业的水平大家也知道,连接口和抽象类都分不清)。对于以上框架只能说学过,但却讲不出一二。 ...
Global site tag (gtag.js) - Google Analytics