The service on my Windows Server using MS-SQL is using a variety of languages but non-English characters like Chinese and Arabic are recorded as ??????????????
The database fields are set to [nvarchar] and the charset is UTF-8.
Web searches and the posts here mostly recommend:
insert into @table select N'你好'
But how I do use the 'N' option, how to include it here?
SQL = "Insert Into Table ( [Title] ) Values ( '" & strTitle & "' )"
dbConnection.Execute(SQL)
All answers suggesting the N switch do not actually give an example of how it should be used.
NOTE: the suggestion using of PARAMETERS is not related to this question at all. SQL injection is not possible here as all form inputs are sanitised and the service is local only. Tangential advice is not welcome.