Thanks for replying .... BUT ....
I see that someone using <MS Remote> provider to doing Remote Accress in ADO connection String.
what about this ? Can it connect to database (Access Database ) throught Intenet ? Thanks .....
not really, but even if so - bad bad bad bad idea as access really is only for client purposes and the connection made to it can only be 1 (or a couple perhaps) at any time.
SQL Server is the way to go!
Is there only one way to do remote access ? I mean only using SQL Server ?
How about my customer is not willingnest to expend with SQL Server ? I mean it is only a tiny company ...
and if there are only the way (SQL Server Solution) , Is there posible I propose them using MSDE2000.
which stand for Microsoft Desktop Engine 2000. And if possible , is there any Coding references for it ..... ;}
Thanks ....
Still that question ... :)
Is any way can find out the coding references , I mean Coding Sample using VB 6.0... ")
and How about the setting for that if using SQL server , because I'm very very very new to
sql Server ... Thank You ... ::)
well this is a .NET forum, VB6 is not supported now.
to connect to SQL Server, create a connection string for SqlConnection:
Dim theSQLConnection as new SqlConnection(ConnectionStringHere)
Connection strings:
trusted security:
"Server=ComputerNameHere;Database=pubs;Trusted_Connection=True;"
username/password:
"Server=ComputerNameHere;Database=pubs;User ID=UserName;Password=PassWord;Trusted_Connection=False"
How if they use up VPN(Virture Private Network) as networking through Internet connection.
can above coding work ? That question also ... Is there confirmed no other way to remote access to
Mircosoft Access database using VB 6.0 ? I mean maybe using ADODB connection like had mention above.
(But solution mention above is for SQL database, I need Microsoft Access database) ,, "")) , Howeve
Thank You very much ... to all any related informaton provided.... Thank you ...
First thank you for the reply. Is it possiable to connect to the access database in web with my application. then what shoud be the connection string. i have tried ths connection string like this.
Provider=MS Remote;Remote Server=www.xyz.in;Remote Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Mydb.mdb;User Id=admin;Password=;
but while opening the connection it will not generating any error. but while executing any select statement it will generating a error
"Specified cast is not valid."