Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007


all groups > inetserver asp db > march 2005 > threads for march 1 - 7, 2005

Filter by week: 1 2 3 4 5

Question for the experts: recordset threading model
Posted by DrLovely NO[at]SPAM . at 3/7/2005 6:10:01 PM
I did a registry search and found that the threadingmodel for the ADODB.recordset class is "both"... Becuase of this, Is it not true that I should be able to use a recordset object well and efficiently if I store it in a session object in order to reference that object on all my asp page calls...more >>

Best way to see if recordset exists?
Posted by Colin Butler at 3/7/2005 4:52:28 PM
I'm querying an Access database to retrieve information about one record and then displaying that information in a report. If the contents of a particular field are not blank I want to query the database again to get other information to display in the report. If the information does not exi...more >>

Is this join valid?
Posted by Ennex at 3/5/2005 3:23:04 AM
Hello Experts, Thank you for the help the other day on stored queries and work tables. Now I've got a mysterious problem. It cropped up in a DB with a complex set of tables and queries, but I've boiled down the behavior to appear in the following simpler structure: SELECT ProductDat...more >>

Data retrieving Problem of SQL Server 7
Posted by Wilton Yuan at 3/4/2005 5:37:26 PM
Hello, I developed ASP web application for small company. The company only has one computer acting as Server. Windows 2000 Server and SQL Server 7 are installed in the same computer,also it act as a web server. Server's CPU speed is 600mHz and RAM is 1GB. We are using ADSL connection. The s...more >>

if statement not properly executing which is leading to error mess
Posted by Jack at 3/4/2005 3:05:02 PM
Hi, I have asp page where it acts as a form with numerous recordsets, few for retrieval and few for saving and retrieval. One of the recordset is shown as below. Here for a particular record, I am getting the error message as: ADODB.Field (0x800A0BCD) Either BOF or EOF is True, or the curr...more >>

replacing single quotes in SQL statements
Posted by TB at 3/4/2005 1:22:23 PM
I am running a series of conn.execute statements on ASP pages against a database. The SQL strings contain single quotes (') as value delimiters - i.e: "INSERT INTO mytable (name, lastname) VALUES ('John', 'Smith') - which is a problem when the values contain single quotes themselves, because...more >>

Can ASP web application run in Linux?
Posted by Wilton Yuan at 3/3/2005 11:24:20 AM
Hello, I am dummy of Linux. Now company's owner wants to switch OS to Linux from Windows because the cost issue. We currently use ASP web application running in Windows 2000 Server with SQL Server 7. If we change to Linux, can I continue to use the existing ASP web application? What web serv...more >>

Unable to connect to Access 2000 database
Posted by Micromanaged at 3/3/2005 7:34:56 AM
I am getting this error Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80004005) [Microsoft][ODBC Microsoft Access Driver]General error Unable to open registry key 'Temporary (volatile) Jet DSN for process 0x4f4 Thread 0xe38 DBC 0xd28da4 Jet'. This is the code that it is tr...more >>



Adding To A Recordset
Posted by Andy at 3/3/2005 6:45:16 AM
Hi Gang I have to 2 SQL statments that grab data from 2 different tables. What I need to do is create a recordset for each and then combine the 2 into 1 recordset. Can I do this easily? Thanks Andy ...more >>

Using ASP recordset as SQL table
Posted by Ennex at 3/3/2005 6:17:02 AM
I'm porting a database developed in Access to a Web site. In Access, I define a number of queries that are then used in other queries just as if they were tables. How do I do the same thing in ASP? I am thinking that what I want to do is something like the following. I would open a record...more >>

SQL server syntax
Posted by Mike D at 3/3/2005 5:23:07 AM
Sorry for posting here but I can't find the SQL server NG. What is the correct syntax for using Like in a select with a variable in a stored procedure? My stored procedure is: Select fields from Table where ClientAccess = @Client I would like Select fields from Table where ClientAc...more >>

IIS Error
Posted by salamahl NO[at]SPAM aecl.ca at 3/2/2005 10:31:43 AM
Hello, So, I have an MS Access DB (replicated) that is attached to a website using ASP. I was changing some information in the DB (as I do many, MANY times) and this time something strange happened. After I changed the DB, MS Access had prompted me to save changes (usually it doesn't, just m...more >>

Problem with IIS - updating DB using ADO
Posted by Calltor at 3/2/2005 8:51:04 AM
I'm running IIS on Windows XP Pro, and I have a problem whenever I try to add, delete or update records in a database using ADO. The DB is an MDB DB. The error message I get is: "Microsoft JET Database Engine (0x80040E09) Cannot update. Database or object is read-only. /blkbrd-sdc/default.asp,...more >>

SQL Server Replication
Posted by David C. Holley at 3/2/2005 8:09:51 AM
I'm looking at migrating the AccessDB backend of my website to SQLServer. There will be a copy of the SQLDB sitting on my PC and another copy sitting on the web server. The copy on the PC will be considered the master. How does replication work when access to the replicant is via IP? Als...more >>

urgent
Posted by kalikoi NO[at]SPAM gmail.com at 3/2/2005 2:59:02 AM
Hi, I have an array as follows a=array("1","2","3","3","2","5","5","1","3") Now i want a function(in vbscript or in asp) which makes my array as follows a=array("1","2","3","3.1","2.1","5","5.1","1.1","3.2") Regards Kalyan...more >>

How to check if there is an error?...
Posted by jungewum NO[at]SPAM yahoo.com.au at 3/1/2005 9:42:59 PM
Hi, I have the following ASP... set dbconn = server.createobject("ADODB.connection") dbconn.open "dsn=news;uid=hello" After the dbconn.open, how do I check if the dbconn.open has an error? e.g. if dbconn has error do something... Thanks, June........more >>

Manipulate string in query resultset in sql server?
Posted by jason NO[at]SPAM catamaranco.com at 3/1/2005 5:12:20 PM
Is there a way to 'append' and manipulate a 'string' onto the beginning of returned results in sql server. For instance, one of my fields [URLCurrent] returns in the following format: "/catamaranco/charter/bareboat/lagoon440_electric/index.asp" However, I wish to remove the tra...more >>

Using SQL trusted connections with ASP.NET
Posted by Adam Getchell at 3/1/2005 5:05:01 PM
Hello all, I've read over: http://idunno.org/dotNet/trustedConnections.aspx I would like to use a trusted connection vice using encrypted database strings: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetsec/html/SecNetHT11.asp http://msdn.microsoft.com/library/d...more >>

ADO / ASP / MEDIAN COMPUTATION
Posted by propedeutique NO[at]SPAM yahoo.fr at 3/1/2005 4:56:59 AM
Hi, I am looking for a way / an example to compute the median and first/last quartils in ASP/ADO/SQL. Thanks in advance for your answers. Bi...more >>


DevelopmentNow Blog