X-Path VS the Hashtable

jacoblwilson

Newcomer
Joined
Sep 26, 2003
Messages
2
Location
San Diego
I have this enormous ASCII file to parse and validate, in several different formats, to insert into a database. I worked up a sweet parser to return ordered lists, that part is fine.

I was going to hold the validation rules in an XmlDataDocument I passed into my validation object. This was terribly slow, though, so I read the lines into a hashtable, the keys being an index (1-237) and the objects being arraylists containing validaiotn rules. My page load time is now nothing.

Is there :
A) a better way I coudl have done this
B) a way to speed up X-Path (the validation document only has 137 lines of data in it)
C) Someway to set up us the bomb
 
Back
Top