Group:  Microsoft Access » microsoft.public.access.internet
Thread: An mdb on a web server

DotNetBag
.NET Development Newsgroups

HTVi
TV Discussion Newsgroups

Our Hot Pick: Rising Antivirus 2006 - Certified by TUV & Checkmark! Get 10% discount by entering this coupon code: ONDISCOUNT10
Rising Antivirus 2006

An mdb on a web server
"Bob Palank" <bob[ at ]stlcc.org> 19.05.2006 21:27:47
I'm attempting to use the DataGrid view on a client hitting on a .mdb file
on a server.
I'm not sure it can be done.

My Assumptions:
1. One can use VB.Net Express 2005 to write a client resident application to
access an .mdb file living on a remote server.
2. No Microsoft Access code elements need to reside on the remote server
except the *.mdb file.
3. On the remote server, permissions need be set so that anyone can have
read access to that Access database.
Are these assumptions true ?

If the assumptions are true, the local error message

Me.AuthorsTableAdapter.Fill(Me.PubsDataSet.authors)==>Could not find
installable ISAM

This does not make sense to me.

TIA for any help.

Bob


Re: An mdb on a web server
"Albert D.Kallal" <PleaseNOOOsPAMmkallal[ at ]msn.com> 19.05.2006 22:18:49
[Quoted Text]
> My Assumptions:
> 1. One can use VB.Net Express 2005 to write a client resident application
> to
> access an .mdb file living on a remote server.

Yes, correct.

Yes, but if you STILL must be able to open the file direct on that remote
server. Remember, a internet connection is about 100 slower then your LAN,
and for the most part, this means that opening a file *OVER* the internet is
too slow. Further, you can't use a socket connection to a mdb file. If you
LOOK CLOSE at the connection string, note how it ALWAYS resolves to a full
path name. So, that remote server has to be on your LAN, or at the very
least, part of your network neighborhood, and you MUST be able to brose
freely to that directory where the mdb file exists.

You can read the following on using a mdb *over* a WAN as opposed to a
LAN....the following is a MUST read if you are using a wan here

http://www.members.shaw.ca/AlbertKallal//Wan/Wans.html



> 2. No Microsoft Access code elements need to reside on the remote server
> except the *.mdb file.

Yes, correct.

> 3. On the remote server, permissions need be set so that anyone can have
> read access to that Access database.
> Are these assumptions true ?

Yes, in addition, users also need file crate rights, and file delete rights.
If these rights are not given, then the appcation will be single user only.
(ms-access creates / deletes a temporary locking file in the same directly
as the mdb file to handle mult-user collisions - since there is no "server"
to manage this).

>
> Me.AuthorsTableAdapter.Fill(Me.PubsDataSet.authors)==>Could not find
> installable ISAM

You don't show what you connection string looks like yet ether. Can you view
any data? How did you data bind this???

Check out the examples, or ask in a .net group for the connection string +
setup. As mentioned, since you don't need, nor are using ms-access, if your
server is remote, and you are using a WAN as opposed to a LAN, then sql
server express is going to be a much better choice here...


--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada
pleaseNOOSpamKallal[ at ]msn.com
http://www.members.shaw.ca/AlbertKallal


Re: An mdb on a web server
"Marcin" <netfoto[ at ]o2.pl> 28.05.2006 19:37:30

U¿ytkownik "Bob Palank" <bob[ at ]stlcc.org> napisa³ w wiadomo¶ci
news:mLqbg.118$gc6.14[ at ]fe06.lga...
[Quoted Text]
> I'm attempting to use the DataGrid view on a client hitting on a .mdb file
> on a server.
> I'm not sure it can be done.
>
> My Assumptions:
> 1. One can use VB.Net Express 2005 to write a client resident application
to
> access an .mdb file living on a remote server.
> 2. No Microsoft Access code elements need to reside on the remote server
> except the *.mdb file.
> 3. On the remote server, permissions need be set so that anyone can have
> read access to that Access database.
> Are these assumptions true ?
>
> If the assumptions are true, the local error message
>
> Me.AuthorsTableAdapter.Fill(Me.PubsDataSet.authors)==>Could not find
> installable ISAM
>
> This does not make sense to me.
>
> TIA for any help.
>
> Bob
>
>


============================================================================
================
FULL LEGAL SOFTWARE !!!
Games, video, program, image, chat, questbook, catalog site, arts, news,
and...
This site it is full register and legal software !!!
Please download and you must register software !!!

PLEASE REGISTER SOFTWARE:
http://www.webteam.gsi.pl/rejestracja.htm
DOWNLOAD LEGAL SOFTWARE:
http://www.webteam.gsi.pl

Full question and post: http://www.webteam.gsi.pl

Contact and service and advanced technology:
http://www.webteam.gsi.pl/kontakt.htm
FAQ: http://www.webteam.gsi.pl/naj_czesciej_zadawane_pytania.htm

Please add me URL for you all site and search engines and best friends !!!

Me site:
SERWIS WEBNETI: http://www.webneti.gsi.pl
PORTAL WEBTEAM: http://www.webteam.gsi.pl
LANGUAGE: http://www.webneti.cjb.net
============================================================================
================






Re: An mdb on a web server
"Stephen Martinelli" <stephenx[ at ]johnstontrading.com> 30.05.2006 21:25:17
Try this link out for connection strings

http://www.connectionstrings.com/

"Albert D.Kallal" <PleaseNOOOsPAMmkallal[ at ]msn.com> wrote in message
news:u2Sk2K5eGHA.4900[ at ]TK2MSFTNGP02.phx.gbl...
[Quoted Text]
>> My Assumptions:
>> 1. One can use VB.Net Express 2005 to write a client resident application
>> to
>> access an .mdb file living on a remote server.
>
> Yes, correct.
>
> Yes, but if you STILL must be able to open the file direct on that remote
> server. Remember, a internet connection is about 100 slower then your LAN,
> and for the most part, this means that opening a file *OVER* the internet
> is too slow. Further, you can't use a socket connection to a mdb file. If
> you LOOK CLOSE at the connection string, note how it ALWAYS resolves to a
> full path name. So, that remote server has to be on your LAN, or at the
> very least, part of your network neighborhood, and you MUST be able to
> brose freely to that directory where the mdb file exists.
>
> You can read the following on using a mdb *over* a WAN as opposed to a
> LAN....the following is a MUST read if you are using a wan here
>
> http://www.members.shaw.ca/AlbertKallal//Wan/Wans.html
>
>
>
>> 2. No Microsoft Access code elements need to reside on the remote server
>> except the *.mdb file.
>
> Yes, correct.
>
>> 3. On the remote server, permissions need be set so that anyone can have
>> read access to that Access database.
>> Are these assumptions true ?
>
> Yes, in addition, users also need file crate rights, and file delete
> rights. If these rights are not given, then the appcation will be single
> user only. (ms-access creates / deletes a temporary locking file in the
> same directly as the mdb file to handle mult-user collisions - since there
> is no "server" to manage this).
>
>>
>> Me.AuthorsTableAdapter.Fill(Me.PubsDataSet.authors)==>Could not find
>> installable ISAM
>
> You don't show what you connection string looks like yet ether. Can you
> view any data? How did you data bind this???
>
> Check out the examples, or ask in a .net group for the connection string +
> setup. As mentioned, since you don't need, nor are using ms-access, if
> your server is remote, and you are using a WAN as opposed to a LAN, then
> sql server express is going to be a much better choice here...
>
>
> --
> Albert D. Kallal (Access MVP)
> Edmonton, Alberta Canada
> pleaseNOOSpamKallal[ at ]msn.com
> http://www.members.shaw.ca/AlbertKallal
>


Re: An mdb on a web server
<new_user[ at ]email.msn.com> 20.08.2006 02:54:34
hello
Stephen Martinelli wrote in message ...
[Quoted Text]
>Try this link out for connection strings
>
>http://www.connectionstrings.com/
>
>"Albert D.Kallal" <PleaseNOOOsPAMmkallal[ at ]msn.com> wrote in message
>news:u2Sk2K5eGHA.4900[ at ]TK2MSFTNGP02.phx.gbl...
>>> My Assumptions:
>>> 1. One can use VB.Net Express 2005 to write a client resident
application
>>> to
>>> access an .mdb file living on a remote server.
>>
>> Yes, correct.
>>
>> Yes, but if you STILL must be able to open the file direct on that remote
>> server. Remember, a internet connection is about 100 slower then your
LAN,
>> and for the most part, this means that opening a file *OVER* the internet
>> is too slow. Further, you can't use a socket connection to a mdb file. If
>> you LOOK CLOSE at the connection string, note how it ALWAYS resolves to
a
>> full path name. So, that remote server has to be on your LAN, or at the
>> very least, part of your network neighborhood, and you MUST be able to
>> brose freely to that directory where the mdb file exists.
>>
>> You can read the following on using a mdb *over* a WAN as opposed to a
>> LAN....the following is a MUST read if you are using a wan here
>>
>> http://www.members.shaw.ca/AlbertKallal//Wan/Wans.html
>>
>>
>>
>>> 2. No Microsoft Access code elements need to reside on the remote server
>>> except the *.mdb file.
>>
>> Yes, correct.
>>
>>> 3. On the remote server, permissions need be set so that anyone can have
>>> read access to that Access database.
>>> Are these assumptions true ?
>>
>> Yes, in addition, users also need file crate rights, and file delete
>> rights. If these rights are not given, then the appcation will be single
>> user only. (ms-access creates / deletes a temporary locking file in the
>> same directly as the mdb file to handle mult-user collisions - since
there
>> is no "server" to manage this).
>>
>>>
>>> Me.AuthorsTableAdapter.Fill(Me.PubsDataSet.authors)==>Could not find
>>> installable ISAM
>>
>> You don't show what you connection string looks like yet ether. Can you
>> view any data? How did you data bind this???
>>
>> Check out the examples, or ask in a .net group for the connection string
+
>> setup. As mentioned, since you don't need, nor are using ms-access, if
>> your server is remote, and you are using a WAN as opposed to a LAN, then
>> sql server express is going to be a much better choice here...
>>
>>
>> --
>> Albert D. Kallal (Access MVP)
>> Edmonton, Alberta Canada
>> pleaseNOOSpamKallal[ at ]msn.com
>> http://www.members.shaw.ca/AlbertKallal
>>
>
>


Home | Search | Terms | Imprint | Contact
Newsgroups Reader - provided by WiredBox.Net