I found a page at the MSDN Library witch list all the ADO properties but I couldn't find anything there about Creating a Table. I found some code which creates a table but I need to find the properties, what they mean and what they are. Are these SQL properties?
VB Code:
  1. 'create new table TestTable
  2.     Call CreateConnection(objConn)
  3.         objConn.Execute "CREATE TABLE TestTable(my_id  TEXT(50)  NOT NULL)"
  4.     Call CloseConnection(objConn)