架构理念:[简单][高效][可依赖] 管理理念:[价值][勇气][专注]
摘要: CREATE or REPLACE FUNCTION fn_attr_category() RETURNS void AS 阅读全文
posted @ 2016-04-14 16:28 文和-Mignet 阅读(292) 评论(0) 推荐(0) 编辑
摘要: HttpPost httppost = new HttpPost(NEW_IMG_SERVER_URL); ByteArrayEntity byteArrayEntity = new ByteArrayEntity(buffer); httppost.setEntity(byteArrayEntity); httppost.addHeader("Content-Type", "jpeg"); System.out.println("executing request " + httppost.getRequestLine()); 阅读全文
posted @ 2016-04-14 15:00 文和-Mignet 阅读(1539) 评论(0) 推荐(0) 编辑
摘要: Class.forName("org.postgresql.Driver").newInstance(); 阅读全文
posted @ 2016-04-14 14:58 文和-Mignet 阅读(290) 评论(0) 推荐(0) 编辑
摘要: dblink ( 'host=172.16.51.25 port=5432 dbname=contract user=eshop password=iTLxUQ7FUv1sBu', 'select contractid from tcrm_s_contractmaster ' ) AS B ( contractid CHARACTER VARYING (100) ) 阅读全文
posted @ 2016-04-14 11:21 文和-Mignet 阅读(276) 评论(0) 推荐(0) 编辑
摘要: A frequent question in IRC is how to delete rows that are duplicates over a set of columns, keeping only the one with the lowest ID. This query does t 阅读全文
posted @ 2016-04-14 10:17 文和-Mignet 阅读(416) 评论(0) 推荐(0) 编辑