php IHDR w Q )Ba pHYs sRGB gAMA a IDATxMk\U s&uo,mD )Xw+e?tw.oWp;QHZnw`gaiJ9̟灙a=nl[ ʨ G;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ w@H;@ q$ y H@E7j 1j+OFRg}ܫ;@Ea~ j`u'o> j- $_q?qS XzG'ay

| files >> /var/www/html/img_galeri/2r1asasas/root/usr/share/doc/postgresql-8.4.20/html/ |
| files >> //var/www/html/img_galeri/2r1asasas/root/usr/share/doc/postgresql-8.4.20/html/citext.html |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>citext</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REV="MADE"
HREF="mailto:pgsql-docs@postgresql.org"><LINK
REL="HOME"
TITLE="PostgreSQL 8.4.20 Documentation"
HREF="index.html"><LINK
REL="UP"
TITLE="Additional Supplied Modules"
HREF="contrib.html"><LINK
REL="PREVIOUS"
TITLE="chkpass"
HREF="chkpass.html"><LINK
REL="NEXT"
TITLE="cube"
HREF="cube.html"><LINK
REL="STYLESHEET"
TYPE="text/css"
HREF="stylesheet.css"><META
HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=ISO-8859-1"><META
NAME="creation"
CONTENT="2014-02-17T20:05:31"></HEAD
><BODY
CLASS="SECT1"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="5"
ALIGN="center"
VALIGN="bottom"
>PostgreSQL 8.4.20 Documentation</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="chkpass.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="contrib.html"
>Fast Backward</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
>Appendix F. Additional Supplied Modules</TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="top"
><A
HREF="contrib.html"
>Fast Forward</A
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="top"
><A
HREF="cube.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><DIV
CLASS="SECT1"
><H1
CLASS="SECT1"
><A
NAME="CITEXT"
>F.6. citext</A
></H1
><A
NAME="AEN115753"
></A
><P
> The <TT
CLASS="FILENAME"
>citext</TT
> module provides a case-insensitive
character string type, <TT
CLASS="TYPE"
>citext</TT
>. Essentially, it internally calls
<CODE
CLASS="FUNCTION"
>lower</CODE
> when comparing values. Otherwise, it behaves almost
exactly like <TT
CLASS="TYPE"
>text</TT
>.
</P
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN115760"
>F.6.1. Rationale</A
></H2
><P
> The standard approach to doing case-insensitive matches
in <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> has been to use the <CODE
CLASS="FUNCTION"
>lower</CODE
>
function when comparing values, for example
</P><PRE
CLASS="PROGRAMLISTING"
> SELECT * FROM tab WHERE lower(col) = LOWER(?);
</PRE
><P>
</P
><P
> This works reasonably well, but has a number of drawbacks:
</P
><P
></P
><UL
><LI
><P
> It makes your SQL statements verbose, and you always have to remember to
use <CODE
CLASS="FUNCTION"
>lower</CODE
> on both the column and the query value.
</P
></LI
><LI
><P
> It won't use an index, unless you create a functional index using
<CODE
CLASS="FUNCTION"
>lower</CODE
>.
</P
></LI
><LI
><P
> If you declare a column as <TT
CLASS="LITERAL"
>UNIQUE</TT
> or <TT
CLASS="LITERAL"
>PRIMARY
KEY</TT
>, the implicitly generated index is case-sensitive. So it's
useless for case-insensitive searches, and it won't enforce
uniqueness case-insensitively.
</P
></LI
></UL
><P
> The <TT
CLASS="TYPE"
>citext</TT
> data type allows you to eliminate calls
to <CODE
CLASS="FUNCTION"
>lower</CODE
> in SQL queries, and allows a primary key to
be case-insensitive. <TT
CLASS="TYPE"
>citext</TT
> is locale-aware, just
like <TT
CLASS="TYPE"
>text</TT
>, which means that the comparison of uppercase and
lowercase characters is dependent on the rules of
the <TT
CLASS="LITERAL"
>LC_CTYPE</TT
> locale setting. Again, this behavior is
identical to the use of <CODE
CLASS="FUNCTION"
>lower</CODE
> in queries. But because it's
done transparently by the datatype, you don't have to remember to do
anything special in your queries.
</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN115785"
>F.6.2. How to Use It</A
></H2
><P
> Here's a simple example of usage:
</P><PRE
CLASS="PROGRAMLISTING"
> CREATE TABLE users (
nick CITEXT PRIMARY KEY,
pass TEXT NOT NULL
);
INSERT INTO users VALUES ( 'larry', md5(random()::text) );
INSERT INTO users VALUES ( 'Tom', md5(random()::text) );
INSERT INTO users VALUES ( 'Damian', md5(random()::text) );
INSERT INTO users VALUES ( 'NEAL', md5(random()::text) );
INSERT INTO users VALUES ( 'Bjørn', md5(random()::text) );
SELECT * FROM users WHERE nick = 'Larry';
</PRE
><P>
The <TT
CLASS="COMMAND"
>SELECT</TT
> statement will return one tuple, even though
the <TT
CLASS="STRUCTFIELD"
>nick</TT
> column was set to <SPAN
CLASS="QUOTE"
>"larry"</SPAN
> and the query
was for <SPAN
CLASS="QUOTE"
>"Larry"</SPAN
>.
</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN115793"
>F.6.3. String Comparison Behavior</A
></H2
><P
> In order to emulate a case-insensitive collation as closely as possible,
there are <TT
CLASS="TYPE"
>citext</TT
>-specific versions of a number of the comparison
operators and functions. So, for example, the regular expression
operators <TT
CLASS="LITERAL"
>~</TT
> and <TT
CLASS="LITERAL"
>~*</TT
> exhibit the same behavior when
applied to <TT
CLASS="TYPE"
>citext</TT
>: they both compare case-insensitively.
The same is true
for <TT
CLASS="LITERAL"
>!~</TT
> and <TT
CLASS="LITERAL"
>!~*</TT
>, as well as for the
<TT
CLASS="LITERAL"
>LIKE</TT
> operators <TT
CLASS="LITERAL"
>~~</TT
> and <TT
CLASS="LITERAL"
>~~*</TT
>, and
<TT
CLASS="LITERAL"
>!~~</TT
> and <TT
CLASS="LITERAL"
>!~~*</TT
>. If you'd like to match
case-sensitively, you can always cast to <TT
CLASS="TYPE"
>text</TT
> before comparing.
</P
><P
> Similarly, all of the following functions perform matching
case-insensitively if their arguments are <TT
CLASS="TYPE"
>citext</TT
>:
</P
><P
></P
><UL
><LI
><P
> <CODE
CLASS="FUNCTION"
>regexp_replace()</CODE
>
</P
></LI
><LI
><P
> <CODE
CLASS="FUNCTION"
>regexp_split_to_array()</CODE
>
</P
></LI
><LI
><P
> <CODE
CLASS="FUNCTION"
>regexp_split_to_table()</CODE
>
</P
></LI
><LI
><P
> <CODE
CLASS="FUNCTION"
>replace()</CODE
>
</P
></LI
><LI
><P
> <CODE
CLASS="FUNCTION"
>split_part()</CODE
>
</P
></LI
><LI
><P
> <CODE
CLASS="FUNCTION"
>strpos()</CODE
>
</P
></LI
><LI
><P
> <CODE
CLASS="FUNCTION"
>translate()</CODE
>
</P
></LI
></UL
><P
> For the regexp functions, if you want to match case-sensitively, you can
specify the <SPAN
CLASS="QUOTE"
>"c"</SPAN
> flag to force a case-sensitive match. Otherwise,
you must cast to <TT
CLASS="TYPE"
>text</TT
> before using one of these functions if
you want case-sensitive behavior.
</P
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN115835"
>F.6.4. Limitations</A
></H2
><P
></P
><UL
><LI
><P
> <TT
CLASS="TYPE"
>citext</TT
>'s behavior depends on
the <TT
CLASS="LITERAL"
>LC_CTYPE</TT
> setting of your database. How it compares
values is therefore determined when
<SPAN
CLASS="APPLICATION"
>initdb</SPAN
> is run to create the cluster. It is not truly
case-insensitive in the terms defined by the Unicode standard.
Effectively, what this means is that, as long as you're happy with your
collation, you should be happy with <TT
CLASS="TYPE"
>citext</TT
>'s comparisons. But
if you have data in different languages stored in your database, users
of one language may find their query results are not as expected if the
collation is for another language.
</P
></LI
><LI
><P
> <TT
CLASS="TYPE"
>citext</TT
> is not as efficient as <TT
CLASS="TYPE"
>text</TT
> because the
operator functions and the btree comparison functions must make copies
of the data and convert it to lower case for comparisons. It is,
however, slightly more efficient than using <CODE
CLASS="FUNCTION"
>lower</CODE
> to get
case-insensitive matching.
</P
></LI
><LI
><P
> <TT
CLASS="TYPE"
>citext</TT
> doesn't help much if you need data to compare
case-sensitively in some contexts and case-insensitively in other
contexts. The standard answer is to use the <TT
CLASS="TYPE"
>text</TT
> type and
manually use the <CODE
CLASS="FUNCTION"
>lower</CODE
> function when you need to compare
case-insensitively; this works all right if case-insensitive comparison
is needed only infrequently. If you need case-insensitive most of
the time and case-sensitive infrequently, consider storing the data
as <TT
CLASS="TYPE"
>citext</TT
> and explicitly casting the column to <TT
CLASS="TYPE"
>text</TT
>
when you want case-sensitive comparison. In either situation, you
will need two indexes if you want both types of searches to be fast.
</P
></LI
></UL
></DIV
><DIV
CLASS="SECT2"
><H2
CLASS="SECT2"
><A
NAME="AEN115856"
>F.6.5. Author</A
></H2
><P
> David E. Wheeler <CODE
CLASS="EMAIL"
><<A
HREF="mailto:david@kineticode.com"
>david@kineticode.com</A
>></CODE
>
</P
><P
> Inspired by the original <TT
CLASS="TYPE"
>citext</TT
> module by Donald Fraser.
</P
></DIV
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="chkpass.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="cube.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>chkpass</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="contrib.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>cube</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>
y~or5J={Eeu磝Qk ᯘG{?+]ן?wM3X^歌>{7پK>on\jy Rg/=fOroNVv~Y+ NGuÝHWyw[eQʨSb> >}Gmx[o[<{Ϯ_qFvM IENDB`