Re: update table with the word Null
- From: "Joe T" <mail@xxxxxxxx>
- Date: Thu, 20 Sep 2007 12:14:17 -0400
Here's the code:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="Connections/stellco.asp" -->
<%
Dim Recordset1
Dim Recordset1_cmd
Dim Recordset1_numRows
Set Recordset1_cmd = Server.CreateObject ("ADODB.Command")
Recordset1_cmd.ActiveConnection = MM_stellco_STRING
Recordset1_cmd.CommandText = "SELECT * FROM projects" Recordset1_cmd.Prepared = true
Set Recordset1 = Recordset1_cmd.Execute
Recordset1_numRows = 0
%>
<%
UPDATE projects
SET floorplan = "Null"
WHERE floorplan = ""
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
</body>
</html>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>
Thanks,
Joe T
.
- Follow-Ups:
- Re: update table with the word Null
- From: Bob Barrows [MVP]
- Re: update table with the word Null
- References:
- update table with the word Null
- From: Joe T
- Re: update table with the word Null
- From: Bob Barrows [MVP]
- Re: update table with the word Null
- From: Joe T
- Re: update table with the word Null
- From: Joe T
- Re: update table with the word Null
- From: Bob Barrows [MVP]
- Re: update table with the word Null
- From: Joe T
- Re: update table with the word Null
- From: Bob Barrows [MVP]
- update table with the word Null
- Prev by Date: Re: update table with the word Null
- Next by Date: Re: File Upload From Clients Computer
- Previous by thread: Re: update table with the word Null
- Next by thread: Re: update table with the word Null
- Index(es):