Re: Database Help (Beginner)
As you work with CDaoDatabase I suppose that you create MS Access files. The field of type TEXT in the Access cannot go over 255 bytes. So for your problem go and see the Access reference and field types.
Re: Database Help (Beginner)
Thanks for the response. Now i've switched to CDatabase (since i don't want that 255 character limit). There is no Create member, so how can i create a brand new database? Thanks!
Re: Database Help (Beginner)
You can use Access Databases, with CDaoDatabase, if you set the field type to Memo. I think Memo fields can store up to 64k of text.
Re: Database Help (Beginner)
Use CreateDatabase() function of the CDatabase class. As far as I remember there was such a thing.