最近一个月使用Postgresql的时候,经常遇到ltree的数据,感觉有些别扭,可是有绕不过去。今天决心整理一下,以后使用方便一些。一、简介 ltree是Postgresql的一个扩展类型,由两位国外PostgreSQL贡献者共同开发。网址如下:http://www.sai.msu.su/~me....
分类:
数据库 时间:
2015-02-10 14:39:53
阅读次数:
186
SAP中直接修改表、视图的Tcode有SE16N和SM30。其中使用SE16N修改表需要先输入命令&SAP_EDIT, 回车左下角显示激活SAP编辑功能后,就可以对相应的表进行新增、删除、修改的操作。有时输入&SAP_EDIT后还是不能激活,是因为另有地方限制,执行程序RKSE16N_EDIT,选中...
分类:
其他好文 时间:
2015-02-10 14:39:32
阅读次数:
191
通常在mysql重启服务后,需要通过手工执行SQL来预热buffer_pool,在mysql5.6中,有如下参数可以无需人工干预。innodb_buffer_pool_dump_at_shutdown= 1:在关闭时把热数据dump到本地磁盘innodb_buffer_pool_dump_now =...
分类:
数据库 时间:
2015-02-10 14:38:03
阅读次数:
234
Implement wildcard pattern matching with support for'?'and'*'.'?' Matches any single character.'*' Matches any sequence of characters (including the e...
分类:
其他好文 时间:
2015-02-10 14:40:11
阅读次数:
165
Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2]have the following unique perm...
分类:
其他好文 时间:
2015-02-10 14:37:42
阅读次数:
208
update Product set Companyid=Company.id from Company inner join Product on Company.CompanyMessage=Product.other1 select * from Company inner join Prod...
分类:
数据库 时间:
2015-02-10 14:38:11
阅读次数:
204
由于公司上网实行代理机制,而最近一段时间又在研究Web上的OpenApi。没办法一定要使用代理,我之前有文章介绍了httpclient的代理使用方式,这里介绍基本java的代理使用方式。最常使用的全局配置代理。Java代码Propertiesprop=System.getProperties();/...
分类:
编程语言 时间:
2015-02-10 14:37:49
阅读次数:
255
using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using System.IO; u...
分类:
其他好文 时间:
2015-02-10 14:36:49
阅读次数:
140
Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.class Solution {public:string tostrin...
分类:
其他好文 时间:
2015-02-10 14:38:50
阅读次数:
201
Smali基本语法 - lee0oo0 - 博客园.field private isFlag:z 定义变量.method 方法.parameter 方法参数.prologue 方法开始.line 12 此方法位于第12行invoke-super 调用父函数const/high16 v0, 0x7fo...
分类:
其他好文 时间:
2015-02-10 14:37:28
阅读次数:
142
ExpandableListView 是一个可以实现下拉列表的控件,大家可能都用过QQ,QQ中的好友列表就是用ExpandableListView实现的,不过它是自定义的适配器。本篇 博客除了要介绍ExpandableListView的使用,还整合了获取SIM的状态,这个很简单也就是获取系统服务,再...
分类:
移动开发 时间:
2015-02-10 14:37:11
阅读次数:
250
Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large and are non-nega...
分类:
其他好文 时间:
2015-02-10 14:38:57
阅读次数:
143
比较简单的递归问题。对于第k时刻的图形,可以平均分成四块,左上,右上,左下这三块的图形是一模一样的,右下的那一块不包含红毛僵尸,所以把那三块里的加起来就是结果了。/* * Author : ben */#include #include #include #include #include #...
分类:
其他好文 时间:
2015-02-10 14:38:18
阅读次数:
145
转自:http://database.51cto.com/art/201010/231561.htm Oracle查询有时候要受到一些条件的制约,比如大小写。下面为您介绍了一个实现Oracle查询忽略大小写的方法,如果您对Oracle查询方面感兴趣的话,不妨一看。...
分类:
数据库 时间:
2015-02-10 13:33:08
阅读次数:
180
S中定义类的方式有很多种:? 1、工厂方式? ??function?Car(){? ???var?ocar?=?new?Object;? ???ocar.color?=?"blue";? ???ocar.doors?=?4;? ???ocar.showColor?=?function(){? ...
分类:
Web程序 时间:
2015-02-10 13:35:02
阅读次数:
183
##前言## 这份文档是Google Java编程风格规范的完整定义。当且仅当一个Java源文件符合此文档中的规则, 我们才认为它符合Google的Java编程风格。 与其它的编程风格指南一样,这里所讨论的不仅仅是编码格式美不美观...
分类:
编程语言 时间:
2015-02-10 13:32:19
阅读次数:
176
###nginx日志举例 172.16.1.1 - - [04/Feb/2015:23:40:01 +0800] "POST /api/message/query HTTP/1.1" 200 52 "-" "Apache-HttpClient/4.2 (java 1.5)" "-" "message.test.com" "172.16.3.159" "-" "0.116" "-" "...
分类:
编程语言 时间:
2015-02-10 13:31:57
阅读次数:
338