上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页

2013年5月8日

摘要: public class PgSqlJdbcCopyStreamsExample{ public static void main(String[] args) throws Exception { String url = "jdbc:highgo://localhost:5866/"; String user = "highgo"; String pwd = "hg"; Class.forName("com.highgo.jdbc.Driver"); Connection con = DriverManage. 阅读全文

posted @ 2013-05-08 13:46 JasmineLiu 阅读(409) 评论(0) 推荐(0) 编辑

摘要: Fast Inserts to PostgreSQL with JDBC and COPY FROMLabels:batches,copy from,inserts,java,jdbcI was reading some materials on how to make database inserts as efficient as possible from Java. it was motivated by an already existing application for storing of some measurements into PosgtreSQL. So I deci 阅读全文

posted @ 2013-05-08 13:10 JasmineLiu 阅读(641) 评论(0) 推荐(0) 编辑


2013年5月7日

摘要: 1.return分为无参数的返回和有参数的返回两种:return;return varible2. private void testMethod(){ if(i<0) { i++ return; } else { i--; return; } System.out.println(“this won't print”);}return的含义是退出整个方法--只要执行了return,则直接退出整个方法;也就是说不管i<0与否,System.out.println(“this won't print”)语句都不会被执行。 阅读全文

posted @ 2013-05-07 14:38 JasmineLiu 阅读(4775) 评论(0) 推荐(0) 编辑

摘要: http://www.cnblogs.com/hoojo/archive/2011/06/10/2077643.html 阅读全文

posted @ 2013-05-07 11:18 JasmineLiu 阅读(125) 评论(0) 推荐(0) 编辑


2013年5月6日

摘要: getIntint getInt(intcolumnIndex) throws SQLExceptionRetrieves the value of the designated column in the current row of thisResultSetobject as anintin the Java programming language.Parameters:columnIndex- the first column is 1, the second is 2, ...Returns:the column value; if the value is S... 阅读全文

posted @ 2013-05-06 14:12 JasmineLiu 阅读(3459) 评论(0) 推荐(0) 编辑


2013年5月3日

摘要: 问题描述:使用Connection、Statement/PreparedStatement、ResultSet来取数据库信息:.........ResultSet rs = stmt.executeQuery();String str1 = rs.getString(field1);......String str2 = rs.getString(field2);.........当执行到String str2 = rs.getString(field2);时抛出异常:java.sql.SQLException: 流已被关闭检查程序代码,缺未发现有什么异常的地方,那么到底是什么原因造成的呢?出 阅读全文

posted @ 2013-05-03 17:30 JasmineLiu 阅读(1116) 评论(0) 推荐(0) 编辑


2013年5月2日

摘要: Oracle Built-in Data TypesThe table that follows summarizes Oracle built-in data types. Refer to the syntax in the preceding sections for the syntactic elements. The codes listed for the data types are used internally by Oracle Database. The data type code of a column or object attribute is returned 阅读全文

posted @ 2013-05-02 13:21 JasmineLiu 阅读(286) 评论(0) 推荐(0) 编辑


2013年4月28日

摘要: 只能输入数字:"^[0-9]*$"。只能输入n位的数字:"^\d{n}$"。只能输入至少n位的数字:"^\d{n,}$"。只能输入m~n位的数字:。"^\d{m,n}$"只能输入零和非零开头的数字:"^0|[1-9][0-9]*$"。只能输入有两位小数的正实数:"^[0-9]+(\.[0-9]{2})?$"。只能输入有1~3位小数的正实数:"^[0-9]+(\.[0-9]{1,3})?$"。只能输入非零的正整数:"^\+?[1-9][0-9]*$ 阅读全文

posted @ 2013-04-28 11:42 JasmineLiu 阅读(3107) 评论(0) 推荐(0) 编辑

摘要: /** * * @author Jasmine */public class TestPattern{ public static void main(String[] args) { String patternString; Pattern pattern ; Matcher matcher; String output; patternString = "INTERVAL\\([0-9]\\)"; pattern = Pattern.compile(patternString,Pattern.... 阅读全文

posted @ 2013-04-28 11:40 JasmineLiu 阅读(303) 评论(0) 推荐(0) 编辑


2013年4月26日

摘要: 开源中国 http://www.oschina.net/log4j http://logging.apache.org/log4j/2.x/ 阅读全文

posted @ 2013-04-26 15:03 JasmineLiu 阅读(110) 评论(0) 推荐(0) 编辑


上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页

Copyright © 2024 JasmineLiu
Powered by .NET 9.0 on Kubernetes