English 中文(简体)
ql
原标题:Multilingual Database design in sql
  • 时间:2012-01-11 11:32:14
  •  标签:
  • sql
  • vb.net

Need a procedure in SQL for translate a datatable in English to Arabic .I am having English table which is having category ID ,Code etc upto 25 columns in the SQL Database.We want to translate this table to arabic when user opts for Arabic .So need a procedure to convert this English table to Arabic.Do i want to use google translator for this case . Then how will it is linked with database . Please reply with an answer

问题回答

您可以检查这两个环节:

http://msdn.microsoft.com/en-US/library/cc295829(v=SQL.90iii.aspx

这里是你可以用作实例的法典的一部分:

CREATE TABLE jobs
(
   job_id  smallint
       IDENTITY(1,1iii
         PRIMARY KEY CLUSTERED,
   job_desc varchar(50iii
     COLLATE Arabic_CI_AI_KS
     NOT NULL
    DEFAULT  New Position - title not formalized yet ,

iii





相关问题
Is Shared ReadOnly lazyloaded?

I was wondering when I write Shared ReadOnly Variable As DataType = New DataType() Or alternatively Shared ReadOnly Variable As New DataType() Is it lazy loaded or as the instance initializes? ...

Entertaining a baby with VB.NET

I would like to write a little application in VB.NET that will detect a baby s cry. How would I get started with such an application?

Choose Enter Rather than Pressing Ok button

I have many fields in the page and the last field is a dropdown with list of values. When I select an item in a dropdown and press Enter, it doesn t do the "Ok". Instead I have to manually click on Ok ...

ALT Key Shortcuts Hidden

I am using VS2008 and creating forms. By default, the underscore of the character in a textbox when using an ampersand is not shown when I run the application. ex. "&Goto Here" is not ...

Set Select command in code

On button Click I want to Set the Select command of a Gridview. I do this and then databind the grid but it doesn t work. What am i doing wrong? protected void bttnView_Click(object sender, ...

Hover tooltip on specific words in rich text box?

I m trying to create something like a tooltip suddenly hoovering over the mouse pointer when specific words in the richt text box is hovered over. How can this be done?

热门标签