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 to a question in Feb. of 2002 because it took me a little bit longer to solve than I thought it would and I thought if I could spare people having to rummage through the exchange SDK on MSDN I could also save them a lot of time.  The question was how to access an excha

[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