adding columns in Access

  • Thread starter Thread starter Kamil
  • Start date Start date
K

Kamil

Hi

I can't find an answer to question how can I add column
into table in Access Database. It's simple in dataset but
how can I update this in real database?

Thanks for any help
 
Hello !

You should connect to your Access DB and execute
following command:

ALTER TABLE <tabname> ADD COLUMN <colname> <datatype>

Regards,
Dmitry

--
===========================================
Dmitry L. Arefiev, director of gs-soft.ru ltd.
Solutions for successful companies

ICQ: 50741007
EMail: (e-mail address removed)
Company: http://www.gs-soft.ru
 
Back
Top