Re: varchar error

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: Raul Secan <raul(at)zerosoft(dot)ro>
Cc: pgsql-php(at)postgresql(dot)org
Subject: Re: varchar error
Date: 2005-06-23 15:58:57
Message-ID: 20050623155857.GB14442@wolff.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

On Thu, Jun 23, 2005 at 11:18:45 +0300,
Raul Secan <raul(at)zerosoft(dot)ro> wrote:
> Hello, I just have this:
>
> CREATE TABLE test (
> mytext varchar(5)
> ) WITHOUT OIDS;
>
> If I put a string with more than 5 chars in mytext, I receive an error, regarding the wrong lenght of the string.
>
> In MySQL I know that the string is automatically reduced to the number of char allowed by the column, even if I insert a longer string.
>
> I don't want to do this from PHP, and I was wandering how this can be done in PostreSQL? Maybe in CREATE TABLE definition?

The way to do this is to use the substring function to do this. You can extract
the first 5 characters of the string you are supplied.

In response to

Browse pgsql-php by date

  From Date Subject
Next Message Nick Stone 2005-06-30 09:35:06 Pqsocket not implemented in PHP
Previous Message Marco Colombo 2005-06-23 11:29:07 Re: varchar error