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 + '
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
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