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:
'create new table TestTable Call CreateConnection(objConn) objConn.Execute "CREATE TABLE TestTable(my_id TEXT(50) NOT NULL)" Call CloseConnection(objConn)




Reply With Quote