Ask a Question related to ASP, Design and Development.
-
Jason Rivers #1
My SQL in ASP
How do i connect to a MySQL sever in ASP, Not MS SQL Server.
Thanks
Jason
Jason Rivers Guest
-
dlbjr #2
Re: My SQL in ASP
install the ODBC drivers available on the MySQL web side and then create a
DSN.
-dlbjr
Discerning resolutions for the alms
dlbjr Guest
-
William Tasso #3
Re: My SQL in ASP
dlbjr wrote:
is ODBC the only supported method?> install the ODBC drivers available on the MySQL web side and then
> create a DSN.
--
William Tasso - [url]http://WilliamTasso.com[/url]
William Tasso Guest
-
dlbjr #4
Re: My SQL in ASP
It's the only one I'm knowledgeable of.
I have used it mainly to hit MySQL on a Linux box.
I have installed MySQL on the local Microsoft box and connected through ODBC
locally
-dlbjr
Discerning resolutions for the alms
dlbjr Guest
-
Ray at #5
Re: My SQL in ASP
I've never used MySQL or anything, so I don't know, but
connectionstrings.com does have an oledb string for MySQL. So, that would
lead me to believe there's an OLEDB driver available. Nice.
Ray at home
"dlbjr" <dontknow@do.u> wrote in message
news:s90nb.155$Qy4.12411@typhoon01...ODBC> It's the only one I'm knowledgeable of.
> I have used it mainly to hit MySQL on a Linux box.
> I have installed MySQL on the local Microsoft box and connected through> locally
>
> -dlbjr
>
> Discerning resolutions for the alms
>
>
Ray at Guest
-
Tony Mak... #6
Re: My SQL in ASP
Try this:
strConn =
"driver={MySQL};server=xxx.xxx.xxx.xxx;uid=databas eusername;pwd=databasepass
word;database=databasename;option=NUM"
Set dbc = Server.CreateObject("ADODB.Connection")
dbc.open strConn
Tony Mak...
"Jason Rivers" <jason.rivers@sevenstreams.tk> wrote in message
news:O1Yavr$mDHA.2312@TK2MSFTNGP12.phx.gbl...> How do i connect to a MySQL sever in ASP, Not MS SQL Server.
>
> Thanks
>
> Jason
>
>
Tony Mak... Guest
-
Michel Thiffault #7
Re: My SQL in ASP
[url]http://www.connectionstrings.com[/url]
"Jason Rivers" <jason.rivers@sevenstreams.tk> wrote in message
news:O1Yavr$mDHA.2312@TK2MSFTNGP12.phx.gbl...> How do i connect to a MySQL sever in ASP, Not MS SQL Server.
>
> Thanks
>
> Jason
>
>
Michel Thiffault Guest
-
William Tasso #8
Re: My SQL in ASP
Ray at <%=sLocation%> wrote:
That's better. Now we may be cooking ;o)> I've never used MySQL or anything, so I don't know, but
> connectionstrings.com does have an oledb string for MySQL. So, that
> would lead me to believe there's an OLEDB driver available. Nice.
>
--
William Tasso - [url]http://WilliamTasso.com[/url]
William Tasso Guest



Reply With Quote

