Question : Does Python have a "BCP" type of utility?

I am using Python to parse a data file. I would like to BCP the file into SQL Server 2005 from my Python script. Is there a module that would allow me to do this? If not how can I call the external "BCP" program from my script.

Note: I really don't want to call an external BCP program

Answer : Does Python have a "BCP" type of utility?

Use BULK INSERT (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_ba-bz_4fec.asp)
which can read CSV file. You don't need python for that.
Random Solutions  
 
programming4us programming4us