I understand your question and have the same issue. Did you ever figure out
how to programmically update the backend? If the backend is not accessible
to me or is installed at 100 locations, how can you update the backend
structure when you send updated front-ends with additional features?
Any luck answering?
> OK Doug - thanks for the assist.
>
[quoted text clipped - 31 lines]
> > >> > doing
> > >> > it to the _be on the server?
=?Utf-8?B?ZGF2ZSBr?= <davek@discussions.microsoft.com> wrote in
news:9C5B7B4F-072E-491B-BDCD-A15E44654C52@microsoft.com:
> I understand your question and have the same issue. Did you ever
> figure out how to programmically update the backend? If the backend
> is not accessible to me or is installed at 100 locations, how can you
> update the backend structure when you send updated front-ends with
> additional features?
' get exclusive, read-write access to the back end
set db = OpenDatabase(strPathToBackEnd, True, False)
' create the command
strSQL = "ALTER TABLE MyTable etc "
' and do it
db.Execute strSQL, dbFailOnError
The equivalent in ADO uses connection strings and command objects, but
the same sort of thing happens.
Hope that helps
Tim F
dave k - 31 May 2005 06:25 GMT
Helps a lot!
Thanks
> =?Utf-8?B?ZGF2ZSBr?= <davek@discussions.microsoft.com> wrote in
> news:9C5B7B4F-072E-491B-BDCD-A15E44654C52@microsoft.com:
[quoted text clipped - 20 lines]
>
> Tim F