Hi,
I need some help here for DSN connection string.
I know it's not recommended to use DSN, even I dont like it as well ...
but for now, my situation is I am using a shared hosting. I do not have
write access to my web root folder, I have a folder specialy for database.
I am currently using access, it is just for testing purpose.
here's the info:
ms access database password : testdb
dsn name : testdb
can anyone tell me what is the connection string ?
thanks,
Tee 7 2025
You don't need write access to c:\, to use DSN-less connection strings.
To see sample connection strings, try www.connectionstrings.com
eg,
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\dbdir\dbfile.mdb;User
Id=whatever;Password=testdb;"
"Tee" <th*@streamyx.com> wrote in message
news:Om**************@TK2MSFTNGP12.phx.gbl... Hi,
I need some help here for DSN connection string. I know it's not recommended to use DSN, even I dont like it as well ... but for now, my situation is I am using a shared hosting. I do not have write access to my web root folder, I have a folder specialy for database. I am currently using access, it is just for testing purpose.
here's the info:
ms access database password : testdb dsn name : testdb
can anyone tell me what is the connection string ?
thanks, Tee
I know about DNS less connection string ... but now the problem is the
database folder is not inside the wwwroot ...
if I really have to get to that folder, I must use ../db/dbfile.mdb ...
but now another problem comes, I cannot exit the top root by using ../ ...
and if I place the database inside my wwwroot folder, I don't have write
access. I need write data to the database as well.
Thanks,
Tee
"Dino Chiesa [Microsoft]" <di****@online.microsoft.com> wrote in message
news:eP**************@TK2MSFTNGP11.phx.gbl... You don't need write access to c:\, to use DSN-less connection strings.
To see sample connection strings, try www.connectionstrings.com
eg, "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\dbdir\dbfile.mdb;User Id=whatever;Password=testdb;"
"Tee" <th*@streamyx.com> wrote in message news:Om**************@TK2MSFTNGP12.phx.gbl... Hi,
I need some help here for DSN connection string. I know it's not recommended to use DSN, even I dont like it as well ... but for now, my situation is I am using a shared hosting. I do not have write access to my web root folder, I have a folder specialy for
database. I am currently using access, it is just for testing purpose.
here's the info:
ms access database password : testdb dsn name : testdb
can anyone tell me what is the connection string ?
thanks, Tee
can you not use string manipulation to build the proper folder name?
or Server.MapPath()
or ..
Your hoster maybe has a FAQ somewhere illustrating how to do this on that
site?
-D
"Tee" <th*@streamyx.com> wrote in message
news:eK**************@TK2MSFTNGP09.phx.gbl... I know about DNS less connection string ... but now the problem is the database folder is not inside the wwwroot ... if I really have to get to that folder, I must use ../db/dbfile.mdb ... but now another problem comes, I cannot exit the top root by using ../ ... and if I place the database inside my wwwroot folder, I don't have write access. I need write data to the database as well.
Thanks, Tee
"Dino Chiesa [Microsoft]" <di****@online.microsoft.com> wrote in message news:eP**************@TK2MSFTNGP11.phx.gbl... You don't need write access to c:\, to use DSN-less connection strings.
To see sample connection strings, try www.connectionstrings.com
eg, "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\dbdir\dbfile.mdb;User Id=whatever;Password=testdb;"
"Tee" <th*@streamyx.com> wrote in message news:Om**************@TK2MSFTNGP12.phx.gbl... Hi,
I need some help here for DSN connection string. I know it's not recommended to use DSN, even I dont like it as well
.... but for now, my situation is I am using a shared hosting. I do not
have write access to my web root folder, I have a folder specialy for database. I am currently using access, it is just for testing purpose.
here's the info:
ms access database password : testdb dsn name : testdb
can anyone tell me what is the connection string ?
thanks, Tee
I am using server.MapPath ... and it really dont let me exit the root by
using ../ ...
as now the the db folder & wwwroot folder are on the same level ... sorry if
you couldn't understand what I meant ...
it is, when I ftp login, I see 2 folder, wwwroot & db ...
so I cannot exit wwwroot and read data in db folder by using ../db/data.mdb
....
please help ...
thanks.
"Dino Chiesa [Microsoft]" <di****@online.microsoft.com> wrote in message
news:uc**************@TK2MSFTNGP11.phx.gbl... can you not use string manipulation to build the proper folder name? or Server.MapPath() or ..
Your hoster maybe has a FAQ somewhere illustrating how to do this on that site? -D
"Tee" <th*@streamyx.com> wrote in message news:eK**************@TK2MSFTNGP09.phx.gbl... I know about DNS less connection string ... but now the problem is the database folder is not inside the wwwroot ... if I really have to get to that folder, I must use ../db/dbfile.mdb ... but now another problem comes, I cannot exit the top root by using ../
.... and if I place the database inside my wwwroot folder, I don't have write access. I need write data to the database as well.
Thanks, Tee
"Dino Chiesa [Microsoft]" <di****@online.microsoft.com> wrote in message news:eP**************@TK2MSFTNGP11.phx.gbl... You don't need write access to c:\, to use DSN-less connection
strings. To see sample connection strings, try www.connectionstrings.com
eg, "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\dbdir\dbfile.mdb;User Id=whatever;Password=testdb;"
"Tee" <th*@streamyx.com> wrote in message news:Om**************@TK2MSFTNGP12.phx.gbl... > Hi, > > I need some help here for DSN connection string. > I know it's not recommended to use DSN, even I dont like it as well ... > but for now, my situation is I am using a shared hosting. I do not have > write access to my web root folder, I have a folder specialy for
database. > I am currently using access, it is just for testing purpose. > > here's the info: > > ms access database password : testdb > dsn name : testdb > > can anyone tell me what is the connection string ? > > thanks, > Tee > >
If you are using the 1.1 version of the framework, then in help look up OBDC
Data Sources then Connections. I think this will tell you how to do want
you to do.
If you are using the 1.0 framework, you will have to download the ODBC .Net
Data provider from Microsoft at http://msdn.microsoft.com/library/de...vframework.asp
"Tee" <th*@streamyx.com> wrote in message
news:Om**************@TK2MSFTNGP12.phx.gbl... Hi,
I need some help here for DSN connection string. I know it's not recommended to use DSN, even I dont like it as well ... but for now, my situation is I am using a shared hosting. I do not have write access to my web root folder, I have a folder specialy for database. I am currently using access, it is just for testing purpose.
here's the info:
ms access database password : testdb dsn name : testdb
can anyone tell me what is the connection string ?
thanks, Tee
All you need to do is find out the absolute file path the the .mdb file and
use that. Ask your hosting service if you don't know it.
--
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
"Tee" <th*@streamyx.com> wrote in message
news:Og**************@TK2MSFTNGP11.phx.gbl... I am using server.MapPath ... and it really dont let me exit the root by using ../ ...
as now the the db folder & wwwroot folder are on the same level ... sorry
if you couldn't understand what I meant ...
it is, when I ftp login, I see 2 folder, wwwroot & db ... so I cannot exit wwwroot and read data in db folder by using
.../db/data.mdb ...
please help ...
thanks.
"Dino Chiesa [Microsoft]" <di****@online.microsoft.com> wrote in message news:uc**************@TK2MSFTNGP11.phx.gbl... can you not use string manipulation to build the proper folder name? or Server.MapPath() or ..
Your hoster maybe has a FAQ somewhere illustrating how to do this on
that site? -D
"Tee" <th*@streamyx.com> wrote in message news:eK**************@TK2MSFTNGP09.phx.gbl... I know about DNS less connection string ... but now the problem is the database folder is not inside the wwwroot ... if I really have to get to that folder, I must use ../db/dbfile.mdb
.... but now another problem comes, I cannot exit the top root by using ../ ... and if I place the database inside my wwwroot folder, I don't have
write access. I need write data to the database as well.
Thanks, Tee
"Dino Chiesa [Microsoft]" <di****@online.microsoft.com> wrote in
message news:eP**************@TK2MSFTNGP11.phx.gbl... > You don't need write access to c:\, to use DSN-less connection strings. > > To see sample connection strings, try > www.connectionstrings.com > > eg, > "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\dbdir\dbfile.mdb;User > Id=whatever;Password=testdb;" > > > "Tee" <th*@streamyx.com> wrote in message > news:Om**************@TK2MSFTNGP12.phx.gbl... > > Hi, > > > > I need some help here for DSN connection string. > > I know it's not recommended to use DSN, even I dont like it as
well ... > > but for now, my situation is I am using a shared hosting. I do not have > > write access to my web root folder, I have a folder specialy for database. > > I am currently using access, it is just for testing purpose. > > > > here's the info: > > > > ms access database password : testdb > > dsn name : testdb > > > > can anyone tell me what is the connection string ? > > > > thanks, > > Tee > > > > > >
That should have read ODBC Data Sources
"William LaMartin" <la******@tampabay.rr.com> wrote in message
news:Os**************@TK2MSFTNGP10.phx.gbl... If you are using the 1.1 version of the framework, then in help look up
OBDC Data Sources then Connections. I think this will tell you how to do want you to do.
If you are using the 1.0 framework, you will have to download the ODBC
..Net Data provider from Microsoft at http://msdn.microsoft.com/library/de...vframework.asp
"Tee" <th*@streamyx.com> wrote in message news:Om**************@TK2MSFTNGP12.phx.gbl... Hi,
I need some help here for DSN connection string. I know it's not recommended to use DSN, even I dont like it as well ... but for now, my situation is I am using a shared hosting. I do not have write access to my web root folder, I have a folder specialy for
database. I am currently using access, it is just for testing purpose.
here's the info:
ms access database password : testdb dsn name : testdb
can anyone tell me what is the connection string ?
thanks, Tee
This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: cider123 |
last post by:
I'm coding a project using the following article as reference:
http://www.codeproject.com/csharp/DynamicPluginManager.asp
In this type of...
|
by: roopeman |
last post by:
i wrote the below code , just want got local machine application Eventlog 's
message , and write to MDB.but it 's can not write the message to Mdb,...
|
by: Chad A. Beckner |
last post by:
Does anyone know how to make common database connections "common" in all
aspx files? In other words, instead of creating a SQLConnection, then a...
|
by: Mike L. |
last post by:
Hi,
Pls, beware that I'm new to this :)
I've developed several web appl, either with ASP or ASP.NET. All using SQL
server as the back end.
In...
|
by: Cheryl Langdon |
last post by:
Hello everyone,
This is my first attempt at getting help in this manner. Please
forgive me if this is an inappropriate request.
I suddenly...
|
by: thejamie |
last post by:
My question: "What is the correct connection object to use in VS 2005 for a
text connection?" will need some background. I am placing code at the...
|
by: PinkBishop |
last post by:
I am using VS 2005 with a formview control trying to insert a record
to my access db. The data is submitted to the main table no problem,
but I...
|
by: zaina |
last post by:
hi everybody
i am nwebie in this forum but i think it is useful for me and the member are helpful
my project is about connecting client with...
|
by: tammygombez |
last post by:
Hey everyone!
I've been researching gaming laptops lately, and I must say, they can get pretty expensive. However, I've come across some great...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
|
by: CD Tom |
last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
|
by: CD Tom |
last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
|
by: jalbright99669 |
last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
| |