Problem Using RecordSet Methods
I am using the following code to create abd use a recordset:
Code:
SET RS = Server.CreateObject("ADODB.RecordSet")
SET RS.CursorLocation = aduseclient
SET RS.CursorType = dymanic
SET RS = cn.execute("SELECT * FROM thistable")
But all I get is the following error:
Microsoft VBScript runtime error '800a01a8'
Object required: 'CursorLocation'
/RUNGE ARCHIVING/default.asp, line 67
which is pointing to the folling line:
SET RS.CursorLocation = aduseclient
If I tafe out that line it will give problems in the line below it, it i delete that it works fine. But I want use to a dynamic recordset. Is there something I typed wrong or a setting I overlooked, or anything on how to fix this ??
View Replies
ADVERTISEMENT
How can I select only certain records from a recordset using the ADODB functions? I've had a ganders through the W3School ADODB Recordset Reference but I'm struggling to understand all the functions.I was hoping to start and end the recordset from specified numbers eg. records 11-20.
View Replies
View Related
I would like to know about the methods : post and get of ASP.What is the difference between them.
View Replies
View Related
Using HTTP_REFERER I cannot capture the URL when the link is made via a
button:
<input type="button" name="Continue" value="Continue Shopping"
onclick="ContinueShopping('http://mysite/supertest.asp');">
I do not control the script above, it is on an e-commerce site that is very
generic, meant for many users - and is generated by their server code. I
want to capture the URL and with an if/then redirect if the last place
visited was the checkout site.
I need an alternate method of URL capture, rather than HTTP_REFERER.
View Replies
View Related
I have two submit buttons. The first one ,when hit displays a table on the same page.The next submit,when hit should insert certain elements from the page to DB and go the next page saying "thanks"...
I am not sure how i can achieve this .I want to know some ideas or if it is possible to use to form methods in one page?
View Replies
View Related
I am trying to parse XML returns from a certain website, sent back in response to my URL queries. The root node of the returned XML has a namespace instruction that I cannot get rid of.
Why do I want to do that, you may ask? Well, I' m really a newbie with XML/XLST/XPath and so on, but I know that If I paste the XML return into a new XML document, get rid
of the namespace stuff, and use that page instead of the original XML return, my code works! Below is a sample of my code so far. Code:
View Replies
View Related
i'm needing a different shopping cart method to update an inventory catalog. it uses the dictionary object, stored as a session variable. not efficient, as some has let me know. i know of one other method of building temp tables in the db. are there any other methods that are efficient and scalable?
View Replies
View Related
What is the best way to encrypt an email?
View Replies
View Related
I'm using xmlhttp to get info from 10 different sites.. 1 site's info is coming to me about 3 second. but when i use 10 sites it longs about 30 seconds.. how can i make it faster ... any solution or any different method can you offer me?
View Replies
View Related
The database is used for referencing filename, there located folder, id, order shown, but also there are some fields say "location_1" up to "location_4" which have a 0 , 1 or 2 in them. 0 means that file not needed for that section. 1 means needed for that section, and 2 means mandantory (must be seen before exit).
firstly selecting a location from a html radio box, drop down menu (not decided yet) will return whats needed so not showing pages what aint needed and wasting time.
Here it is though in order on the left i wish it to build a menu, but more advanced than plain links would be good. drop down like windows explorer etc. Code:
View Replies
View Related
Last week, my shopping cart was still working well until I began getting the following errors 2days ago..
Error Type:
ADODB.Recordset (0x800A0BCD)
Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record.
../order/saveorder.asp, line 157
Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
Page:
GET /main/saveorder.asp
Could you check my code below and let me know what possibly the error is?
View Replies
View Related
I have created a forum, in which I have 3 tables:
1: Table_Forum
2: Threads
3: Replies
I have it at the moment that on the main default.asp there is a recordset that will
display all records within that table, these are a list of forums that will be available.
I have a table that will show the forum name, and the description. This table is then looped using Do while not, now what i need to do is show how many records in the Treads table are related to each forum using asp. Code:
View Replies
View Related
I basically created 5 different recordset with names of
ObjRS2 ---> ObjRS6
The code is pretty easy to understand, but I'm missing something
<%
for (i=2;i<=6;i++)
{
%>
all of my HTML code calling the Recordsets....example
<tr>
<td>
<%= objRSi("something")%> <----- the "i" is where i want the counter obviously
</td>
</tr>
}
how would one make this work?
View Replies
View Related
I have a database set up for a survey where in the Answers table I have columns QuestionID, SurveyID, and Answer. Because my survey has about 300 possible questions it's impossible to make a column for each answer. So if I need to select the answers from a specific survey for a specific question and I have about 50 entered in the database my loop will have go keep going for about 15000 times. What I'm trying to find out is if there is a way to create a record set by selecting a survey by it's ID and then when I only have about 300 rows in the record set select answer from the record set using the questionID.
This is to update the answers for the survey. Also, another possibility would be update the recordset and then update the database. Is it possible to do that? Any directions to some code?
View Replies
View Related
Doing a "modify a registry" html, I need to use the content of a recordset as an initial value for a text input , but it does not function the way I need to; this code gives me an error, look:
<input type="text" name="apeynom" size="25" maxlength="20" value=<% ob_rs("apeynom") %> >
the error shown is "Error de Microsoft VBScript en tiempo de ejecución error '800a01c2' Número de argumentos erróneo o asignación de propiedad no válida: 'ob_rs' "
how should be the sintax?
View Replies
View Related
I need to format a recordset into a particular format i.e.
Dim myDataStore
MyDataStore = ...
so that myDataStore =
[ 'record1field1',
'record1field2','record1field3','record1field4','record1field5'], [
'record2field1',
'record2field2','record2field3','record2field4','record2field5'], etc
I can do this OK for 1 record and know I need so kind of loop but am not
sure how to go about for the whole recordset?
View Replies
View Related
i ahve a recordset which takes data from a database using the shape command in a SQL statement. now i want it to show the data in a tabular fom such that the parent field has to it's right the child fields with out repeating the parent field again and again. And this done, the child field in the table should have the grandchild fields to is right and as before without repetition of the child field. and all of this in a tabular form!!!
i use a similar sql statement as below:
SQLTRY = "SHAPE {SELECT * FROM A} APPEND ( ( SHAPE {SELECT * FROM B} APPEND ({SELECT * FROM C} RELATE MachineNum TO MachineNum) AS rsparts) RELATECategoryNum TO CategoryNum)"
View Replies
View Related
I have the following code:
Code:
Set RS = Server.CreateObject("ADODB.RecordSet" )
RS.CursorLocation = 3
RS.Open ("SELECT * FROM " & the_table_name & " WHERE " & job_id_field & "=" & request.querystring("job") &""), cn, adOpenDynamic
Both have connections via the following string:
Code:
set cn = server.createobject("adodb.connection")
cn.Open ("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath(database_map_path)) & ";"
Only difference is that the newer version has the connection string included in another file, and the "RS.OPEN ..." line on the recordset code gives an error: "Too few parameters". Expected 1.
View Replies
View Related
When it pulls the user info from the db, it's fine, but when i come to display the info for editing, it doesn't populate the interests column.
Also, do you know how to change a form so that a certain field can send a blank string, or at least so that it doesn't require any input? Code:
View Replies
View Related
can anyone explain to me what the code is trying to do?
if rsHistory(2) = "i" then
v_HistOperation="Clock - In"
v_HistTime=rsHistory(0)
else
if rsHistory(2) = "o" then
v_HistOperation="Clock - Out"
v_HistTime=rsHistory(1)
end if
View Replies
View Related
I'm working on a website where a compiled object returns a recordset. When I access the recordset, the memo fields are truncated. Is there anyway to get the full data from the existing recordset or is that a problem with the object itself and how the data is being queried (from SQL Server)?
View Replies
View Related
I have a recordset full of data from form input. I would like to insert this data into a table where the recordID = the recordID from a query string. Is this possible with recordsets? To specify where to add the record, as opposed to just inserting a brand new record?
View Replies
View Related
Does any one have a sample of ASP recordset tooltip?
View Replies
View Related
I'm retrieving two rows from a recordset and i want to place a divider between the titles.
Title1 | Title2 (intended approach)
So far i've got it to work but it displays at the end of the second item.
Title1 | Title2 |
How can i stop the second occurrence.
I'm sure it's pretty simple but i can't figure it out.
View Replies
View Related
Does anyone know of a good, simple and preferably free tool that is similar to MS Frontpage's Data Connection WYSIWYG tool?
Specifically, I have a bunch of recordsets that I need to convert into ASP pages and I really am not looking forward to coding the recordset fields manually. Dreamweaver and Frontpage are WAY to much overkill for what I want.
View Replies
View Related
I am using an Access database and I have a list of pubs in one table in the other stores the time and date of the visit to that certain pub, if you go to www.mutedesigns.co.uk/bpubs
user: test: password: test
click on search date and search 31st March, it shows a result saying Jarv is going to the....... on the 31st March at 21:30 to drink
my question: how do i show what pub they are drinking in to show, click on PUBS and then H and then Hove Place (1st Avenue)
View Replies
View Related
I need to create a recordset from a number of session variables. After I create this recordset I will be passing it to a stored procedure.
Could someone please tell me how to create the recordset? I'm not asking how to GET a recordset from a database. I need to know how to create one: create fieldnames and put data into each field.
View Replies
View Related
I'm having a problem with one of the editors of a site I look after. He keeps on putting the Headline to uppercase. I'm familiar with to uppercase but how could you apply it to a record set so that only the first word becomes a capital and the rest is in lower case?
<%=(rsNewsArticle.Fields.Item("Headline").Value)%>
View Replies
View Related
Does any one have a sample of ASP recordset tooltip?
View Replies
View Related
I have an ASP page that calls ASP routines that I created that execute
a database query and return the results to a recordset. I then iterate
through the recordset and display the data in a table. Before I iterate
through the recordset I instruct the browser that the content type is
Excel using the following line:
(Response.ContentType = "application/vnd.ms-excel")
This works fine with Excel 2003 but with older versions (I tested Excel
97) the HTML included within the include files (on Page One) is
displayed in an Excel worksheet.
Page One - Begins with Include files (which contain my subroutines and
databse connection information). Then I have a Select statement to
determine which export users want. When I hit the case I need I then
call a Sub routine that exports the data to Excel. Code:
View Replies
View Related
I have this stored procedure which is outputting records from two tables
Can one RecordSet have records from both these tables?
View Replies
View Related
I have a RecordSet in hand which retrieves the Items in the database as per the category. Now I would like to Sort the RecordSet, based on the selection from 2 drop-down select boxes. The selection's values are the name of a column and the other selection has the values "ASC" and "DESC". And the form submits to the same page.
How can I accomplish this?I tried the RecordSet.Sort method, but to no avail. Maybe it is something I am doing wrong.
View Replies
View Related
I have a doubt.I am connecting to mysql db and there is only one table and i am retrieving the data like city, state, county, etc.. from db to comboboxes. so i am using one recordset for each retrivel and showing into combobox.it is going slowly.SO what happens if i use multiple recordsets in single ASP page?
So I think we can use only one recordset for all the data retrievel from the db?
View Replies
View Related