Here's the output I'm getting.  The ar_id lines are bold. I expect from the EPL 
file to get just one header line.  What am I missing here?  This is DBI::Sprite 
for the database engine. Running under WIndows.

ar_id datetime eventcode user info 
1 1012334551 CreateReview nobody 
ar_id datetime eventcode user info 
1 1012334552 ReviewDirectory nobody wteicbqv 
ar_id datetime eventcode user info 
1 1012334552 CreatorEmail nobody [EMAIL PROTECTED] 
ar_id datetime eventcode user info 
2 1012334733 CreateReview nobody 


Here's the EPL file I'm running. It's the example from the DBIx::Recordset 
Intro docs:

<body> <h1>Contents of table ``[+ $fdat{'!Table'} +]''</h1> 

  [-
  $req = shift;
  use DBIx::Recordset ;
  
  $fdat{'!DataSource'} = $req->{website_database};
  $fdat{'!Username'} = $req->{db_user};
  $fdat{'!Password'} = $req->{db_pass};
  *set = DBIx::Recordset -> Search(\%fdat) ;
  $names = $set -> Names ;
  -]


  <table>
    <tr>
      <th>[+ $names -> [$col] +]</th>
    </tr>
    <tr>
      [- $rec = $set[$row] -]
      <td>[+ $rec -> {$names->[$col]} +]</td>
    </tr>
  </table>
</body>

Any help would be greatly appreciated!
Scott

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to