Re: [python-win32] ADOX catalog.Table.Append error -- 'The parameter is incorrect.',

2006-07-11 Thread eric . powell
Might I suggest just using a CREATE TABLE sql statement through ADO instead? sqlstatement = CREATE TABLE SPAM (SpamID Int Not Null, Eggs Char(20)); conn = win32com.client.Dispatch(r'ADODB.Connection') DSN = 'PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=' + self.dbpath + ';'

[python-win32] Exchange Server Event Solution

2006-07-11 Thread Johann Abraham
I wanted to post the solution toa question in Feb. of 2002because it took me a little bit longer to solve than I thought it would and I thought if Icould spare people having to rummage through the exchange SDK on MSDN I could also save them a lot of time.Thequestionwas how to access an exchange

[python-win32] Re: ADOX catalog.Table.Append error -- 'The parameter is

2006-07-11 Thread Roger Upole
Jim.Vickroy wrote: Hello, I am a novice user of ADOX who is attempting to create a database and a table in it. I seem to be able to create a SQL Express database but am unable to add a table to it. The attached script (adox.py) illustrates the difficulty. Any suggestions would be