上一页 1 ··· 6 7 8 9 10 11 12 下一页

2013年1月5日

摘要: == 用于比较引用和比较基本数据类型时具有不同的功能:对于基本数据类型,只要数值相同就返回TRUE;对于引用,则是比较是否指向内存中同一对象,内容相同但不指向同一对象也会返回false;equalsequals 方法(是String类从它的超类Object中继承的)被用来检测两个对象是否相等,即两个对象的内容是否相等。String a1='aa';String b1='aa'; a1==a2 true a1.equals(a2) trueStudent s1=new Student("lily",23);Student s2=s1;Stude 阅读全文

posted @ 2013-01-05 13:54 JasmineLiu 阅读(166) 评论(0) 推荐(0) 编辑

摘要: http://blog.csdn.net/anmei2010/article/details/4093118 阅读全文

posted @ 2013-01-05 10:23 JasmineLiu 阅读(106) 评论(0) 推荐(0) 编辑


2012年12月20日

摘要: ostgres=# \l List of databases Name | Owner | Encoding | Collate | Ctype | Access privileges -----------+----------+----------+-------------+-------------+----------------------- china | postgres | EUC_CN | zh_CN.euccn | zh_CN.euccn | kor... 阅读全文

posted @ 2012-12-20 16:24 JasmineLiu 阅读(3027) 评论(0) 推荐(0) 编辑

摘要: http://space.itpub.net/14293419/viewspace-622671http://wenda.tianya.cn/question/1152bebdd19581c5 阅读全文

posted @ 2012-12-20 15:14 JasmineLiu 阅读(237) 评论(0) 推荐(0) 编辑


2012年12月13日

摘要: The result is displayed as text in the Data Output page, and graphically visualized on the Explain page. This enables you to find out how the query is parsed, optimized and executed. You can modify the degree of inspection by changing the Explain options for this in the Query menu. Please note that 阅读全文

posted @ 2012-12-13 12:22 JasmineLiu 阅读(2069) 评论(0) 推荐(1) 编辑


2012年12月4日

摘要: postgres=# CREATE TABLE rtbl ( a int, b int, t text, x float, y float );CREATE TABLEpostgres=# INSERT INTO rtbl (SELECT code AS a, (code * 100 * random())::int% 57 AS b, md5(code::text) || ' i... 阅读全文

posted @ 2012-12-04 10:01 JasmineLiu 阅读(221) 评论(0) 推荐(0) 编辑


2012年12月3日

摘要: 阅读全文

posted @ 2012-12-03 15:56 JasmineLiu 阅读(126) 评论(0) 推荐(0) 编辑

摘要: CREATE TABLE的语法允许声明数组的确切大小,比如:CREATE TABLE tictactoe ( squares integer[3][3]);不过,目前的实现并不强制数组尺寸限制(等价于未声明长度的数组)。实际上,目前的实现也不强制数组维数。 阅读全文

posted @ 2012-12-03 10:39 JasmineLiu 阅读(513) 评论(0) 推荐(0) 编辑


2012年11月22日

摘要: (1)到数据库安装目录data下,找到pg_hba.conf文件:(2)打开并配置pg_hba.conf文件,加入客户端的IP或者包括客户端在内的网段:修改前修改后参照所给的格式添加,比如第二条记录就是允许所有的100网段的客户端连接服务端,也可以设置为单一客户端的IP 。 阅读全文

posted @ 2012-11-22 15:51 JasmineLiu 阅读(1142) 评论(0) 推荐(0) 编辑

摘要: 本文主要讲在连接时的替代作用(win7环境下):当默认值并不十分恰当时,我们可以通过设置环境变量来节省一些输入,比如将PGDATABASE,PGHOST,PGPORT或者PGUSER设置为恰当的值。(对于其他环境变量,详见Section 31.14。)1 设置环境变量2 在终端中输入D:\Program Files (x86)\HighGo\Database\1.3\bin>psql –help即可看到现在user默认值更改为lhh。直接输psql(不用-U指定用户),则默认的user就是lhh。用一个 ~/.pgpass 文件来避免每次登陆都要输入密码的问题,这也很方便。请参阅Sect 阅读全文

posted @ 2012-11-22 11:21 JasmineLiu 阅读(10221) 评论(4) 推荐(1) 编辑


上一页 1 ··· 6 7 8 9 10 11 12 下一页

Copyright © 2024 JasmineLiu
Powered by .NET 9.0 on Kubernetes