-
Posted to
Classic ASP
by
florian_mrt
on
04-24-2006, 8:49 AM
Yeah.
eg:
x_CompanyID = Null: ox_CompanyID = Null: x_CompanyName = Null: ox_CompanyName = Null: x_ROC = Null: ox_ROC = Null: x_PostalAddress = Null: ox_PostalAddress = Null: x_WebsiteAddress = Null: ox_WebsiteAddress = Null
Is the same as (and if you like, should normally be):
x_CompanyID = Null
ox_CompanyID = Null
x_CompanyName = ...
-
Posted to
Classic ASP
by
florian_mrt
on
04-24-2006, 8:34 AM
You are quite realistically right in mentioning that one better has to choose either ASP or PHP for whatever need it was that requested the solution. But in terms of designing large systems for extended computer systems, the choice isnt there sometimes. You will have to take into account that at some stage, UNIX based servers will be the only ...
-
Posted to
Classic ASP
by
florian_mrt
on
04-21-2006, 10:12 AM
Cheers, an interesting number of choices, and an interesting point to discuss.
How about calling a specific function in PHP? I think that would work if you had a PHP function-controller first that would find a specific function upon a passed variable, and return the result in maybe a serialized way if the result is an array.
Talking about ...
-
Posted to
Classic ASP
by
florian_mrt
on
04-21-2006, 5:19 AM
How about two different script files communicating with each other, eg a php file transfering data to an asp file?
-
Posted to
Classic ASP
by
florian_mrt
on
04-19-2006, 11:32 AM
Its great to see that my popularity is interstellarly great with so many look ups, buttahhhh....
Anyone?
Thanks for the help this far.
-
Posted to
Classic ASP
by
florian_mrt
on
03-29-2006, 7:36 PM
Ok, I downloaded the native client and I thought I was going to install it, instead, it made me re-installing it. I got the two connectionstrings that are most relevant with native client, and this time I got the following error.
I know that this is really super-simple, and that everybody might lose their patience about it, but really; all I want ...
-
Posted to
Classic ASP
by
florian_mrt
on
03-28-2006, 5:28 PM
Yes, I know www.connectionstrings .com fairly well, the site has been visited by me regularly, and helped me a great deal with finding alternatives. But none really worked.
What do you mean with downloading ''the native client for SQL 2005'' ? Thats downloading and installing SQL 2005 Express, right? Or do you mean just the driver, which I havent ...
-
Posted to
Classic ASP
by
florian_mrt
on
03-01-2006, 7:26 PM
Thanks for the answers, but that didn't solve the problem for me. I have used a new databasefile and a new database
dim v_strSQL
Set o_dbsConnection = Server.CreateObject(''ADODB.Connection'')
set o_dbsRecordSet = Server.CreateObject(''ADODB.Recordset'')
o_dbsConnection.ConnectionString = ''provider=sqloledb;Server=UNCLEFLOLAPTOP;Data ...
-
Posted to
Classic ASP
by
florian_mrt
on
02-16-2006, 9:57 PM
Hurray, my first post.
I have used MS Access data files before for websites, but this time I plan to develop a little more enhanced website using asp. An MS Access database will just be a 'unprofessional' solution in the least, I think.
I am therefore looking for a way to get a successfull connection going with my SQLExpress service. But ...