Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Date & Dynamic Text

New Here ,
Sep 10, 2006 Sep 10, 2006

Copy link to clipboard

Copied

I have a news systems and I am having trouble displaying both the date from the database and the text.

Here is how my page is layed out:

HEADLINE (DATE (date/time in sql server)
Story (text) in sql server.

If I remove DATE then the Story Shows up.

Please advise.

Using 8.0.2 Update


TOPICS
Server side applications

Views

217
Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Sep 11, 2006 Sep 11, 2006

Copy link to clipboard

Copied

LATEST
Hi,

When creating the recordset, you need to specify, by name, each field in the
SELECT statement and make sure that any (text) fields are last to be
specified.
SELECT date, story FROM table...etc as opposed to SELECT * FROM
table....etc.

When you remove date, only one field exists so story would display, I think!
:o)
Again, just a guess, but it sounds like it might be this. Hope this is
useful.

Regards
Nath.

"WebSlave" <webforumsuser@macromedia.com> wrote in message
news:ee21hc$giu$1@forums.macromedia.com...
>I have a news systems and I am having trouble displaying both the date from
>the
> database and the text.
>
> Here is how my page is layed out:
>
> HEADLINE (DATE (date/time in sql server)
> Story (text) in sql server.
>
> If I remove DATE then the Story Shows up.
>
> Please advise.
>
> Using 8.0.2 Update
>
>
>
>


Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines