Re: [HACKERS] FAQ error

2001-10-14 Thread Bruce Momjian

 Bruce Momjian writes:
 
   Bruce Momjian writes:
  
OK, new FAQ code is:
   
$sql = SELECT nextval('person_id_seq');
$newSerialID = ($conn-selectrow_array($sql))[0];
INSERT INTO person (id, name) VALUES ($newSerialID, 'Blaise Pascal');
$res = $dbh-do($sql);
  
   This code is still incorrect for any known programming language and it's
   even less clear to a person that doesn't know the programming language
   it's probably trying to imitate.
 
  OK, what suggestions do you have?
 
 I didn't have a problem with the original version.  It conveyed clearly
 (to me), read the nextval and insert it yourself.

Obviously, someone did because they tried the code and it didn't work. 
At least the new code is closer to valid, though less clear.  It is at
least a valid snippet, which the previous version was not.

-- 
  Bruce Momjian|  http://candle.pha.pa.us
  [EMAIL PROTECTED]   |  (610) 853-3000
  +  If your life is a hard drive, |  830 Blythe Avenue
  +  Christ can be your backup.|  Drexel Hill, Pennsylvania 19026

---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]



Re: [HACKERS] FAQ error

2001-10-14 Thread Bruce Momjian

 Obviously, someone did because they tried the code and it didn't work. 
 At least the new code is closer to valid, though less clear.  It is at
 least a valid snippet, which the previous version was not.

OK, I changed it to more pseudocode:

new_id = output of SELECT nextval('person_id_seq')
INSERT INTO person (id, name) VALUES (new_id, 'Blaise Pascal');

and

INSERT INTO person (name) VALUES ('Blaise Pascal'); 
new_id = output of SELECT currval('person_id_seq');


-- 
  Bruce Momjian|  http://candle.pha.pa.us
  [EMAIL PROTECTED]   |  (610) 853-3000
  +  If your life is a hard drive, |  830 Blythe Avenue
  +  Christ can be your backup.|  Drexel Hill, Pennsylvania 19026

---(end of broadcast)---
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly



Re: [HACKERS] FAQ error

2001-10-14 Thread Peter Eisentraut

Bruce Momjian writes:

  Bruce Momjian writes:
 
   OK, new FAQ code is:
  
   $sql = SELECT nextval('person_id_seq');
   $newSerialID = ($conn-selectrow_array($sql))[0];
   INSERT INTO person (id, name) VALUES ($newSerialID, 'Blaise Pascal');
   $res = $dbh-do($sql);
 
  This code is still incorrect for any known programming language and it's
  even less clear to a person that doesn't know the programming language
  it's probably trying to imitate.

 OK, what suggestions do you have?

I didn't have a problem with the original version.  It conveyed clearly
(to me), read the nextval and insert it yourself.

-- 
Peter Eisentraut   [EMAIL PROTECTED]   http://funkturm.homeip.net/~peter


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

http://archives.postgresql.org



Re: [HACKERS] FAQ error

2001-10-13 Thread Bruce Momjian

 Bruce Momjian writes:
 
  OK, new FAQ code is:
 
  $sql = SELECT nextval('person_id_seq');
  $newSerialID = ($conn-selectrow_array($sql))[0];
  INSERT INTO person (id, name) VALUES ($newSerialID, 'Blaise Pascal');
  $res = $dbh-do($sql);
 
 This code is still incorrect for any known programming language and it's
 even less clear to a person that doesn't know the programming language
 it's probably trying to imitate.

OK, what suggestions do you have?

-- 
  Bruce Momjian|  http://candle.pha.pa.us
  [EMAIL PROTECTED]   |  (610) 853-3000
  +  If your life is a hard drive, |  830 Blythe Avenue
  +  Christ can be your backup.|  Drexel Hill, Pennsylvania 19026

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

http://www.postgresql.org/users-lounge/docs/faq.html



Re: [HACKERS] FAQ error

2001-10-12 Thread Bruce Momjian

 On 10 Oct 2001 at 17:12 (-0400), Bruce Momjian wrote:
 | 
 | Our FAQ, item 4.16.2 has:
 | 
 | $newSerialID = nextval('person_id_seq');
 | INSERT INTO person (id, name) VALUES ($newSerialID, 'Blaise Pascal');
 | 
 | Is this correct Perl?  I don't see a nextval() function in Perl.  Can
 | you call SQL server-side functions natively from Perl?
 
 no. The proper perl code would be more like...
 
 use DBI;
 my ($lastid,$nextid,$sql,$rv);
 my $dbh = DBI-connect(perldoc DBD::Pg);
 
 # to use the nextval
 $sql = SELECT nextval('person_id_seq');
 $nextid = ($dbh-selectrow_array($sql))[0];
 $sql = INSERT INTO person (id, name) VALUES ($nextid, 'Blaise Pascal');
 $rv = $dbh-do($sql);

OK, new FAQ code is:

$sql = SELECT nextval('person_id_seq');
$newSerialID = ($conn-selectrow_array($sql))[0];
INSERT INTO person (id, name) VALUES ($newSerialID, 'Blaise Pascal');
$res = $dbh-do($sql);
 
 # or to get the currval
 $sql = INSERT INTO person (name) VALUES ('Blaise Pascal');
 $rv = $dbh-do($sql);
 $sql = SELECT currval('person_id_seq');
 $lastid = ($dbh-selectrow_array($sql))[0];

and:

INSERT INTO person (name) VALUES ('Blaise Pascal');
$res = $conn-do($sql);
$sql = SELECT currval('person_id_seq');
$newSerialID = ($conn-selectrow_array($sql))[0];

-- 
  Bruce Momjian|  http://candle.pha.pa.us
  [EMAIL PROTECTED]   |  (610) 853-3000
  +  If your life is a hard drive, |  830 Blythe Avenue
  +  Christ can be your backup.|  Drexel Hill, Pennsylvania 19026

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

http://archives.postgresql.org



Re: [HACKERS] FAQ error

2001-10-11 Thread Alessio Bragadini

Bruce Momjian wrote:

 $newSerialID = nextval('person_id_seq');
 INSERT INTO person (id, name) VALUES ($newSerialID, 'Blaise Pascal');
 
 Is this correct Perl?  I don't see a nextval() function in Perl.  Can
 you call SQL server-side functions natively from Perl?

Ofcourse not. This can be counted as 'pseudo-code'...

A correct implementation using DBI (and DBD::Pg) would be

$newSerialID = $dbh-selectrow_array (q{select
nextval('person_id_seq')});
$dbh-do (qq{INSERT INTO person (id, name) VALUES ($newSerialID, 'Blaise
Pascal')});

-- 
Alessio F. Bragadini[EMAIL PROTECTED]
APL Financial Services  http://village.albourne.com
Nicosia, Cyprus phone: +357-2-755750

It is more complicated than you think
-- The Eighth Networking Truth from RFC 1925

---(end of broadcast)---
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [EMAIL PROTECTED] so that your
message can get through to the mailing list cleanly



Re: [HACKERS] FAQ error

2001-10-11 Thread Peter Eisentraut

Bruce Momjian writes:

 Our FAQ, item 4.16.2 has:

   $newSerialID = nextval('person_id_seq');
   INSERT INTO person (id, name) VALUES ($newSerialID, 'Blaise Pascal');

 Is this correct Perl?

No.  I always thought it was pseudo code.  I think it's fine.

-- 
Peter Eisentraut   [EMAIL PROTECTED]   http://funkturm.homeip.net/~peter


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

http://archives.postgresql.org



Re: [HACKERS] FAQ error

2001-10-10 Thread Brent Verner

On 10 Oct 2001 at 17:12 (-0400), Bruce Momjian wrote:
| 
| Our FAQ, item 4.16.2 has:
| 
|   $newSerialID = nextval('person_id_seq');
|   INSERT INTO person (id, name) VALUES ($newSerialID, 'Blaise Pascal');
| 
| Is this correct Perl?  I don't see a nextval() function in Perl.  Can
| you call SQL server-side functions natively from Perl?

no. The proper perl code would be more like...

use DBI;
my ($lastid,$nextid,$sql,$rv);
my $dbh = DBI-connect(perldoc DBD::Pg);

# to use the nextval
$sql = SELECT nextval('person_id_seq');
$nextid = ($dbh-selectrow_array($sql))[0];
$sql = INSERT INTO person (id, name) VALUES ($nextid, 'Blaise Pascal');
$rv = $dbh-do($sql);

# or to get the currval
$sql = INSERT INTO person (name) VALUES ('Blaise Pascal');
$rv = $dbh-do($sql);
$sql = SELECT currval('person_id_seq');
$lastid = ($dbh-selectrow_array($sql))[0];


| -- 
|   Bruce Momjian|  http://candle.pha.pa.us
|   [EMAIL PROTECTED]   |  (610) 853-3000
|   +  If your life is a hard drive, |  830 Blythe Avenue
|   +  Christ can be your backup.|  Drexel Hill, Pennsylvania 19026
| 
| ---(end of broadcast)---
| TIP 6: Have you searched our list archives?
| 
| http://archives.postgresql.org

-- 
Develop your talent, man, and leave the world something. Records are 
really gifts from people. To think that an artist would love you enough
to share his music with anyone is a beautiful thing.  -- Duane Allman

---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
(send unregister YourEmailAddressHere to [EMAIL PROTECTED])