"Memo" fields in access

This is a discussion on ""Memo" fields in access" within the Databases section. This forum, and the thread ""Memo" fields in access are both part of the Program Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Program Your Website > Databases

Notices




Closed Thread
 
LinkBack Thread Tools
  #1  
Old Jun 25th, 2004, 18:54
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 23
Posts: 1,669
Blog Entries: 1
Thanks: 1
Thanked 4 Times in 4 Posts
"Memo" fields in access

I am currently working on a content management system to store articles, tutorials and other things... this problem happened to me once before but I've forgotten what I did to work around the problem.

when I run a query to retrieve a the "content" field from my "Articles" table, the result has only the first 255 characters of the field's content.

the only thing to note about the SQL statement is that I group the records and count the number of related record on another table, i.e.:
<font face="Courier New">SELECT Articles.article, Articles.content, Count(Feedback.feedback) AS n
FROM Articles LEFT JOIN Feedback ON Feedback.article = Articles.article
WHERE (article = [whatever])
GROUP BY Articles.article, Articles.content</font id="Courier New">

anybody know why? how do I work around that?
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!

  #2  
Old Jun 25th, 2004, 19:23
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
Are you reading the value from the recordset more than once? Like rs("article") and somewhere later rs("article")?

I've read you can use GetChunk to read the memo field but it seems like there should be something better...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #3  
Old Jun 25th, 2004, 22:28
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 23
Posts: 1,669
Blog Entries: 1
Thanks: 1
Thanked 4 Times in 4 Posts
no. I only read it once...
Can you tell me how I can use "GetChunk"? (never heard of that)
Thanks
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #4  
Old Jun 25th, 2004, 23:33
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
http://www.faqts.com/knowledge_base/...d/4882/fid/410
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #5  
Old Jun 26th, 2004, 09:18
Rob's Avatar
Rob Rob is offline
Webforumz Founder
Join Date: Jul 2003
Location: Southern UK
Age: 34
Posts: 3,184
Blog Entries: 7
Thanks: 27
Thanked 21 Times in 18 Posts
<blockquote id="quote"><font size="1" face="geneva, verdana, arial" id="quote">quote:<hr height="1" noshade id="quote">The first thing to remember is always put the long text field last in
your SQL statement. There is a bug somewhere (ADO or SQL Server) which
causes data to be truncated otherwise.<hr height="1" noshade id="quote"></blockquote id="quote"></font id="quote">That kinda sums it up.

The code in that example really sucks.
__________________
Click the 'Thanks!' button if this post has helped you

Rob - Webforumz Founder
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
  #6  
Old Jun 26th, 2004, 16:29
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 23
Posts: 1,669
Blog Entries: 1
Thanks: 1
Thanked 4 Times in 4 Posts
thanks guys!!!!!
btw.: that website is wicked......
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Closed Thread

Tags
memo, fields, access

Thread Tools

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Form Fields robukni PHP Forum 7 Oct 10th, 2007 20:26
ASP Multi users Access to Microsoft Access ish Classic ASP 0 Apr 26th, 2007 20:05
Access Memo Field sarahrobin Databases 0 Feb 13th, 2007 08:15


All times are GMT. The time now is 03:31.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42