On Tue, Jun 14, 2011 at 12:47 PM, INDER wrote:
> Hello Everyone. I am new to this group and as well as to the Postgres
> also. Can anybody tell me that how to insert hindi text into postgres
> that a user has entered from html input with the use of PHP. Please I
> am waiting for the reply.
>
>
No
Hello Everyone. I am new to this group and as well as to the Postgres
also. Can anybody tell me that how to insert hindi text into postgres
that a user has entered from html input with the use of PHP. Please I
am waiting for the reply.
--
Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org)
* Leif Biberg Kristensen:
> And even better, in the first comment to the blog post, I was advised about
> the
> SETVAL() function which does exactly what I wanted in the first place.
>
> CREATE SEQUENCE persons_person_id_seq;
> SELECT SETVAL('persons_person_id_seq', MAX(person_id)) FROM persons;