Home All Groups Group Topic Archive Search About

Address Matching System

Author
5 Jan 2006 4:21 AM
Mario
Help.........

I have a CDROM that has address information from the USPS.

If you have any source code for this I would appreciate it.

What I want to do is pull the address and zip code from the CDRom and store
in my database.

Any suggestions.

Thankz
Mo

Author
5 Jan 2006 10:28 AM
Sankalp
How is the address and zip information stored in the CD ROM? Is it
stored in an Excel sheet or are there separate files for the addresses?

SV
Author
5 Jan 2006 6:50 PM
Sankalp
How is the address and zip information stored in the CD ROM? Is it
stored in an Excel sheet or are there separate files for the addresses?

SV
Author
5 Jan 2006 10:49 PM
clintonG
This type of data is usually comma delimited text with a header in a form
such as...

[street_address,city,state,zip]
16 Kincaid,Stinkyville,WI,53226-5433
2215 Cheese Head Ave.,Milwaukee,WI,53212-3878
....
....

It should be easy to search the web to find a tut to read and parse
delimited data.

<%= Clinton Gallagher
         METROmilwaukee (sm) "A Regional Information Service"
         NET csgallagher AT metromilwaukee.com
         URL http://metromilwaukee.com/
         URL http://clintongallagher.metromilwaukee.com/


Show quoteHide quote
"Mario" <mo***@charter.net> wrote in message
news:dn2vf.495$dj3.53@fe04.lga...
> Help.........
>
> I have a CDROM that has address information from the USPS.
>
> If you have any source code for this I would appreciate it.
>
> What I want to do is pull the address and zip code from the CDRom and
> store in my database.
>
> Any suggestions.
>
> Thankz
> Mo
>
Author
15 Jan 2006 10:04 PM
Homer J Simpson
"Mario" <mo***@charter.net> wrote in message
news:dn2vf.495$dj3.53@fe04.lga...

> I have a CDROM that has address information from the USPS.
>
> If you have any source code for this I would appreciate it.

1) Don't cross post this much :-
microsoft.public.dotnet.faqs,microsoft.public.dotnet.general,microsoft.public.dotnet.languages.vb,
microsoft.public.dotnet.languages.vb.controls,microsoft.public.dotnet.languages.vb.data,microsoft.public.vsnet.general
!!

Not nice.

2) Unless the design has changed these are zipped up CSV files with various
techniques used to minimize the data before storing and compressing. IIRC,
their website has info on how to access the data. I know I wrote my own
software to do it way back when.