Re: Noobie, please help!
"James K. Lowden" <[email protected]>
| Newsgroups | gmane.comp.db.tds.freetds |
|---|---|
| Message-ID | <[email protected]> |
Gal Rubinstein wrote:
> I guess it
> didn't include the db** symbols, I have to figure out what to build in
> order to make it
> work.... I'm guessing its src/dblib... m i right?
Yep. Something like this would do what you want, modulo Windows
command-line quoting:
$ perl doc/api_status.txt | perl -ne'BEGIN{print qq(EXPORTS\n);}
s/dbopen/tdsdbopen/; next unless /^Microsoft\tdblib\s+\w+\s*(\t\w+)\tOK/;
print $1, $/'
--jkl