Every time I call ado.AddNew() a select * from Table is generated.
This is a large table and the unqualified select * statement causes my add operation to get progressively slower as the table size grows.
How do I keep AddNew from generating the select * statement?
My db is sql server 2005.
My client code is in python, through ado.
This is a large table and the unqualified select * statement causes my add operation to get progressively slower as the table size grows.
How do I keep AddNew from generating the select * statement?
My db is sql server 2005.
My client code is in python, through ado.
Comment