Hi,
I'm getting problem with connecting Flash and SQL Server with ASP. Most of the articles or samples on the Net is using Access not SQL Server. Anybody can give me some example or any link so that i can study on myself?
Can you help me?
Thanx in advance..
It's basically the same process connecting to SQLServer as Access, it should just be a matter of changing the connection string within the ASP script - the actual SQL queries etc will work for both types of database.
Here's a generic SQL server connection, fill in the relevant database names, passwords etc:
Code:
strconn="Provider=sqloledb;Data Source="&DB_host&" ;Initial Catalog="&DB_name&";UID="&DB_userid&";Password="&DB_password&";"
set oConn = server.createobject("adodb.connection")
oConn.open strconn
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.