- Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
- Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Another Visual Basic question - data fails XML parsing
Collapse
X
-
Thankfully, the client has agreed to replacing the dodgy characters with valid ones. Even I can manage to code that!Leave a comment:
-
Originally posted by Moose423956 View PostThat's an avenue I'm exploring via a REPLACE, but it's up to the client.
I believe this is what it's doing. I'm not a SQL Server expert, but I think the character set is "SQL_Latin1_General_CP1_CI_AS" - at least that's what I get when I run the command
SELECT DATABASEPROPERTYEX('DBName', 'Collation') DatabaseCollation;
Is that a character set?
accent-sensitive, kanatype-insensitive, width-insensitive for Unicode
Data, SQL Server Sort Order 52 on Code Page 1252 for non-Unicode Data
XML in SQL Server? go use MongoDB, Postgress, nosql and leave us dbas aloneLeave a comment:
-
Originally posted by Moose423956 View PostGood idea. Do you know one?Leave a comment:
-
Originally posted by DimPrawn View PostGet a decent contractor in to sort it all out.
Leave a comment:
-
You could always remove the illegal characters.
It says SqlException, is the data stored as XML in SQL Server, or does it write XML to SQL server and read the data from a file?
SELECT DATABASEPROPERTYEX('DBName', 'Collation') DatabaseCollation;
Is that a character set?
Are you explicitly informing whatever does the parsing of what the encoding of the file is? I vaguely remember once having problems with MSXML under some circumstances if I forgot to tell it the input was UTF-8.
XmlTextWriter xmlTextWriter = new XmlTextWriter(stream, Encoding.UTF8);
so I assume that's where it's defined?
Apologies for my woolly answers, but I really am out of my depth.Leave a comment:
-
Are you explicitly informing whatever does the parsing of what the encoding of the file is? I vaguely remember once having problems with MSXML under some circumstances if I forgot to tell it the input was UTF-8.Leave a comment:
-
Not enough information.
It says SqlException, is the data stored as XML in SQL Server, or does it write XML to SQL server and read the data from a file?Leave a comment:
-
You could always remove the illegal characters.
Presumably it's some setting to do with character sets. You're meant to specify UTF-8 or whatever in the XML tag.Leave a comment:
- Home
- News & Features
- First Timers
- IR35 / S660 / BN66
- Employee Benefit Trusts
- Agency Workers Regulations
- MSC Legislation
- Limited Companies
- Dividends
- Umbrella Company
- VAT / Flat Rate VAT
- Job News & Guides
- Money News & Guides
- Guide to Contracts
- Successful Contracting
- Contracting Overseas
- Contractor Calculators
- MVL
- Contractor Expenses
Advertisers
Contractor Services
CUK News
- Streamline Your Retirement with iSIPP: A Solution for Contractor Pensions Sep 1 09:13
- Making the most of pension lump sums: overview for contractors Sep 1 08:36
- Umbrella company tribunal cases are opening up; are your wages subject to unlawful deductions, too? Aug 31 08:38
- Contractors, relabelling 'labour' as 'services' to appear 'fully contracted out' won't dupe IR35 inspectors Aug 31 08:30
- How often does HMRC check tax returns? Aug 30 08:27
- Work-life balance as an IT contractor: 5 top tips from a tech recruiter Aug 30 08:20
- Autumn Statement 2023 tipped to prioritise mental health, in a boost for UK workplaces Aug 29 08:33
- Final reminder for contractors to respond to the umbrella consultation (closing today) Aug 29 08:09
- Top 5 most in demand cyber security contract roles Aug 25 08:38
- Changes to the right to request flexible working are incoming, but how will contractors be affected? Aug 24 08:25
Leave a comment: