views:

1015

answers:

2

Hey i am making a project on VB.NET in which my text boxes have FONT property set to "TERAFONT-VARUN, 12pt " which is for GUJARATI language.
Now i want to save the data of text box into my MS ACCESS data base.

I also want to retrieve that data for other purpose.

Can you please tell me what to do?

+1  A: 

.Net uses Unicode and you should be able to safely save Unicode strings to Access without problems.
Note that the font you are using doesn't matter here, it's only important for displaying Unicode to the user. It has nothing to do with the database.

To save data to Access from .Net, you can have a look at these resources:

This should get you started on using Access databases from your .Net programs.

Renaud Bompuis
A: 

Please note that unicode text inserting to or from the database is not the issue neither formating the unicode. The problem to notice is that while inserting, unicode may contain coded value (") which indirectly terminates the string at that point only. and the rest of the string is considered as code, which is considered to be stack overflow by the program at the runtime.

Sachin Popatkar