Board index » delphi » adding a new field to existing table

adding a new field to existing table

I have small project that uses paradox 5 & delphi 1. I need to add 2 new field
to tables that the users have. Any help is greatly appreciated.

If you can please respond directly to me.

Hadi Fallah
ACR Inc.

 

Re:adding a new field to existing table


Quote
>I have small project that uses paradox 5 & delphi 1. I need to add 2 new
>field
>to tables that the users have. Any help is greatly appreciated.

>If you can please respond directly to me.

>Hadi Fallah
>ACR Inc.

The easiest way to do it is through a SQL statement:

Alter Table YourTable
Add YourColumn Char(25)
********************************
Michael Glatz              
glatzfa...@aol.com
mgl...@briefcase.com
Accept that some days you're the pigeon,
some days you're the statue.

Other Threads