Resize Access Database Column/Field Programmatically with C#
Posted
by user68798809
on Stack Overflow
See other posts from Stack Overflow
or by user68798809
Published on 2010-06-07T02:29:45Z
Indexed on
2010/06/07
2:42 UTC
Read the original article
Hit count: 272
If I know that a particular Text column exists in a table, how can I programmatically resize that field (say from 10 to 20) with C#? I don't want to use the method where I would create a temporary column, copy the data over, drop the old column, and rename the new one. I'd like to preserve the orde.
© Stack Overflow or respective owner