Unix Technical Forum

Re: Error

This is a discussion on Re: Error within the pgsql Novice forums, part of the PostgreSQL category; --> > What's the value of $customer_id before you attempt > the insert? > > right after $customer_id variable is ...


Go Back   Unix Technical Forum > Database Server Software > PostgreSQL > pgsql Novice

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-17-2008, 09:20 PM
operationsengineer1@yahoo.com
 
Posts: n/a
Default Re: Error

> What's the value of $customer_id before you attempt
> the insert?
>
> right after $customer_id variable is set, do the
> following:
>
> echo $customer_id . '<br />';
> echo gettype ( $customer_id );
> exit;
>
> With ADO, a couple of times, I've run into a glitch
> where bindings
> changed types. Haven't taken the time to figure out
> why. Switching
> to autoExecute solves the problem:
>
> $insert_array = array ( 'customer_id' =>
> $db->getone("select nextval
> ('t_customer_cust_id_seq')"),
> 'customer_name' =>
> $form->GetInputValue('customer_name'),
> 'customer_entry_date' => $db->DBDate(time()))
>
> $result = $db->autoExecute ( 't_customer',
> $insert_array,
> 'INSERT' );
>
> Most likely, the reason it works for me is that I
> cleaned up my error
> when switching to the autoExecute method.
>
> Charley


using php to cast to to an integer...

$customer_id = (int) $customer_id;

....worked for me. i have a note in on the adodb forum
to find out why it is casting as boolean.



__________________________________
Yahoo! Music Unlimited
Access over 1 million songs. Try it free.
http://music.yahoo.com/unlimited/

---------------------------(end of broadcast)---------------------------
TIP 4: Have you searched our list archives?

http://archives.postgresql.org

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-17-2008, 09:20 PM
Charley Tiggs
 
Posts: n/a
Default Re: Error

On Nov 30, 2005, at 7:12 PM, <operationsengineer1@yahoo.com>
<operationsengineer1@yahoo.com> wrote:

>> What's the value of $customer_id before you attempt
>> the insert?
>>
>> right after $customer_id variable is set, do the
>> following:
>>
>> echo $customer_id . '<br />';
>> echo gettype ( $customer_id );
>> exit;
>>
>> With ADO, a couple of times, I've run into a glitch
>> where bindings
>> changed types. Haven't taken the time to figure out
>> why. Switching
>> to autoExecute solves the problem:
>>
>> $insert_array = array ( 'customer_id' =>
>> $db->getone("select nextval
>> ('t_customer_cust_id_seq')"),
>> 'customer_name' =>
>> $form->GetInputValue('customer_name'),
>> 'customer_entry_date' => $db->DBDate(time()))
>>
>> $result = $db->autoExecute ( 't_customer',
>> $insert_array,
>> 'INSERT' );
>>
>> Most likely, the reason it works for me is that I
>> cleaned up my error
>> when switching to the autoExecute method.
>>
>> Charley

>
> using php to cast to to an integer...
>
> $customer_id = (int) $customer_id;
>
> ...worked for me. i have a note in on the adodb forum
> to find out why it is casting as boolean.


I think your query failed.

After you execute this query:

>> $customer_id = $db->getone("select nextval
>> ('t_customer_cust_id_seq')");


do the following:

echo $db->ErrorMsg();
exit;

That will tell you why the query failed.

Charley

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 01:38 PM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com