> I am trying to move all the downloaded links which
> gets saved into the text file in cache folder
> hts-cache. So that my application can access the
> database for files
>
> But i no nothing about VC++.Can anybody please tell
> me which part of code should be modified to make it
> work with Access Database
Why not use SED to convert the text lines into DB add row commands. Something
like this batch file:
@echo off
sed %mirrorDir%\hts-cache\new.lst -e "s/[][]//g" -e "s/\(.*\)/call %access%
insert into table \""\1\""" >%temp%\addRows.bat
%temp%\addRows.bat
|