views:

21

answers:

1

Does anyone know if this is possible when I use ADOdb? I need to create new tables and edit table structures programmatically (i.e. adding new columns or modifying existing columns). I'm going to use MySQL for sure.

+1  A: 

I don't think ADOdb has built-in methods to do this, but you can just run the appropriate SQL commands (ALTER TABLE, etc).

Josh Yeager