Hi,

This first error looks to be caused by this issue:
http://code.google.com/p/googleappengine/issues/detail?id=157

For the second, to upload text fields, you can specify the value type as
db.Text.

-Marzia

On Wed, Nov 19, 2008 at 11:02 PM, Gampesh <[EMAIL PROTECTED]> wrote:

>
> Hi,
>
> my bulkupolad script is working fine for the fields in loader.py is
> "str" that is:
>
>    def __init__(self):
>
>        fields = [
>
>            ("newsid", str),
>            ("celebrity_id", str),
>            ("url_id", str),
>            ("title", str),
>            ("link", str),
>            ("description", str),
>            ("pub_date", str),
>            ("created_at", str),
>            ("updated_at", str)
>        ]
>
>        bulkload.Loader.__init__(self, "News", fields)
>
>
> but in my data i have some some text data which have more the 500
> bytes data which is range for the text so what would be the by
> loader.py for the text field instead of "str"
>
> ("description", str), is field which is a text type so what should be
> type in place of  "str"
>
> thanks
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to