DW8 No longer creates standard Recordsets

For what ever reason, I want to blame it on an extension, but
I seem to have two unique problems. The first is when I try to
creat a recordset (using a connectionless string) DW8.0.2 places :
<!--#include @@urlformat@@="Connections/connQuality.asp" -->
in the file. I have no idea why @@urlformat@@ is there in place of
: file
A standard non-filtered recordset looks like this now:
<%
Dim Recordset1
Dim Recordset1_cmd
Dim Recordset1_numRows
Set Recordset1_cmd = Server.CreateObject ("ADODB.Command")
Recordset1_cmd.ActiveConnection = MM_connQuality_STRING
Recordset1_cmd.CommandText = ""
Recordset1_cmd.Prepared = true
Set Recordset1 = Recordset1_cmd.Execute
Recordset1_numRows = 0
%>
I have tried everything I know and now am in need of other
Subject Matter Experts.
i believe these are two problems and not one. the connection
problem seems to be a result of a InterAKT extension that I added
and have sinxce removed. Their website referred to a patch, but it
is offline. I am more concerned about the recordset issue....there
is not definition to the details of the table. Is it a SQL RS and
if so how do I neutralize it....
Feedback welcome:
Thank you,
gary

I am experiencing the exact problem :(
HELP!

Similar Messages

  • DW8 Bindings Panel not showing recordsets

    G'day,
    I have a number of sites configured, with many pages using
    recordsets. For some reason DW8 is no longer showing the recordsets
    in the bindings panel. This is true for pages that were created in
    DW8 and still in their original code state and for pages that I
    have modified to send e-mail when a record is added, so it is not
    due to me modifying code.
    Any tips on how to refresh or re-populate the bindings panel
    would be gratefully appreciated.
    DW8 | ASP | VBScript

    It looks like you are creating a query from a query rather
    than from a data
    table. Is that right?
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner''s
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "emjemnsw" <[email protected]> wrote in
    message
    news:[email protected]...
    > yes they do.
    > I've attached a code sample of one recordset that I
    haven't "messed" with
    > but
    > doesn't show in the bindings panel.
    > I have created some other recordsets today and they are
    showing OK in the
    > panel.
    >
    > Thanks,
    > Mark
    >
    > <%
    > Dim rsOpenPlans
    > Dim rsOpenPlans_cmd
    > Dim rsOpenPlans_numRows
    >
    > Set rsOpenPlans_cmd = Server.CreateObject
    ("ADODB.Command")
    > rsOpenPlans_cmd.ActiveConnection = MM_NewsDB_STRING
    > rsOpenPlans_cmd.CommandText = "SELECT ID FROM
    > qryMigration_Open_Migrations"
    > rsOpenPlans_cmd.Prepared = true
    >
    > Set rsOpenPlans = rsOpenPlans_cmd.Execute
    > rsOpenPlans_numRows = 0
    > %>
    > <%
    > ' *** Recordset Stats, Move To Record, and Go To Record:
    declare stats
    > variables
    >
    > Dim rsOpenPlans_total
    > Dim rsOpenPlans_first
    > Dim rsOpenPlans_last
    >
    > ' set the record count
    > rsOpenPlans_total = rsOpenPlans.RecordCount
    >
    > ' set the number of rows displayed on this page
    > If (rsOpenPlans_numRows < 0) Then
    > rsOpenPlans_numRows = rsOpenPlans_total
    > Elseif (rsOpenPlans_numRows = 0) Then
    > rsOpenPlans_numRows = 1
    > End If
    >
    > ' set the first and last displayed record
    > rsOpenPlans_first = 1
    > rsOpenPlans_last = rsOpenPlans_first +
    rsOpenPlans_numRows - 1
    >
    > ' if we have the correct record count, check the other
    stats
    > If (rsOpenPlans_total <> -1) Then
    > If (rsOpenPlans_first > rsOpenPlans_total) Then
    > rsOpenPlans_first = rsOpenPlans_total
    > End If
    > If (rsOpenPlans_last > rsOpenPlans_total) Then
    > rsOpenPlans_last = rsOpenPlans_total
    > End If
    > If (rsOpenPlans_numRows > rsOpenPlans_total) Then
    > rsOpenPlans_numRows = rsOpenPlans_total
    > End If
    > End If
    > %>
    >
    > <%
    > ' *** Recordset Stats: if we don't know the record
    count, manually count
    > them
    >
    > If (rsOpenPlans_total = -1) Then
    >
    > ' count the total records by iterating through the
    recordset
    > rsOpenPlans_total=0
    > While (Not rsOpenPlans.EOF)
    > rsOpenPlans_total = rsOpenPlans_total + 1
    > rsOpenPlans.MoveNext
    > Wend
    >
    > ' reset the cursor to the beginning
    > If (rsOpenPlans.CursorType > 0) Then
    > rsOpenPlans.MoveFirst
    > Else
    > rsOpenPlans.Requery
    > End If
    >
    > ' set the number of rows displayed on this page
    > If (rsOpenPlans_numRows < 0 Or rsOpenPlans_numRows
    > rsOpenPlans_total)
    > Then
    > rsOpenPlans_numRows = rsOpenPlans_total
    > End If
    >
    > ' set the first and last displayed record
    > rsOpenPlans_first = 1
    > rsOpenPlans_last = rsOpenPlans_first +
    rsOpenPlans_numRows - 1
    >
    > If (rsOpenPlans_first > rsOpenPlans_total) Then
    > rsOpenPlans_first = rsOpenPlans_total
    > End If
    > If (rsOpenPlans_last > rsOpenPlans_total) Then
    > rsOpenPlans_last = rsOpenPlans_total
    > End If
    >
    > End If
    > %>
    >

  • Unable to create a recordset

    I uninstalled 8.02, reinstalled 8.0 and applied the 8.01
    patch. Now I can no longer work with any of several ASP VBScript
    pages.
    When I open a page, the recordset is missing and when I try
    to create one I get the following error.
    http://home.comcast.net/~tlhuffman/error.gif
    The error also appears if I try to create a recordset on a
    new page.
    I did a Google search for Dreamweaver AND FileTypes.js and
    found very little.
    Any ideas?

    Hi,
    For questions regarding dynamic site development,  hop over to the following forum.  You'll get better answers there.
    Dreamweaver Application Development Forum
    http://forums.adobe.com/community/dreamweaver/dreamweaver_development?view=discussions
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • When I try to create a Recordset i get Javascript runtime error

    Please help i am working with Php and trying to create a
    recordset query to access my table etc. this is what i get when i
    click + Recordset from the Server Behaviors window:
    JavaScript error while loading RecordSet.htm:
    At line 1111 of file: "C:\Program
    Files\Macromedia\Dreamweaver
    8\Configuration\ServerBehaviors\PHP_MySQL\Recordset.js" : theStr =
    theStr.replace(/(?>)*/gi, ''''); //remove close tags
    SyntaxError: Invalid Quantifier ?

    i restarted it i am gonna restart the computer
    also went here
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19105&sliceId=1#dat
    didnt really help

  • I can no longer create an event on iCal by double clicking on a time or date, nor can I double click on an existing event! HELP!

    I can no longer create an event on iCal by double clicking on a time or date, nor can I double click on an existing event! HELP!
    The only way I have to create an event is by using the "+" button, which is very limiting!
    I am running the latest version of Mac OS X and all the updates.
    Anyone know how I could get a proper use of my iCal ?
    Thanks

    Hi,
    If you list the steps you have taken to fix this it will help.
    Have you tried using the File > New Event menu item?
    Have you logged the user account out/ restarted the computer?
    Have you tried un-syncing any accounts synced to Calendar?
    Is there some change made to the computer that may have triggered this?
    Best wishes
    John M

  • Is there a way to create standard text messages that can be reused easily

    is there a way to create standard text messages that can be reused easily

    if you meant phrases, then Yes
    Setteings> general>keyboard> add new shortcut

  • I can no longer create groups that contain subgroups??

    Folks,
    I used to be able to create a group, drag existing subgroups and individuals into that group, and send emails to all by simply typing the group name into Mail.
    I can no longer do this.
    Now, to be precise. I can create what looks like a group and by dragging existing subgroups into it -- but it no longer functions as a group. When I type the name or drag it (from Contacts) into the "To:" line of Mail, the only thing that shows up are the top-level individuals (i.e., those who I put dragged in as individuals, not those who are only in one of the subgroups that I dragged in).
    If I create a group that only has subgroups (i.e., no individuals at the top level, only individuals who are members of one or more of the included subgroups) then after I type the group name in the "To:" line of mail, the group name dissappears, and nothing appears in Mail's "To:" line.
    The actual behavior is a little more subtle than this but the bottom line is that I can no longer create groups with subgroups.
    Help!!

    Hi,
    If you list the steps you have taken to fix this it will help.
    Have you tried using the File > New Event menu item?
    Have you logged the user account out/ restarted the computer?
    Have you tried un-syncing any accounts synced to Calendar?
    Is there some change made to the computer that may have triggered this?
    Best wishes
    John M

  • Why can I no longer create/access playlists on my iPod since I upgraded to iTunes 10.5.2?

    Why can I no longer create/access playlists on my iPod since I upgraded to iTunes 10.5.2?

    I have the same situation. I believe I disconnected iCloud by going into preferences and also unclicking the box for Contacts. What am I missing?
    Larry

  • I can no longer create a new folder on my desktop

    Both my boyfriend and I have searched ad nauseum and cannot find out why I can no longer create a new folder on my desktop. When we try, we get an error message that says "the operation can't be completed because you don't have the necessary permission" (a Finder pop-up error message). I am the administrator and logged in as such. Anyone have any idea where in Settings, etc., that we can change this?  Thanks.

    Click on the Desktop and press command-I (Get Info).
    Expand the  General section of the Info window and be sure the Locked checkbox is unchecked.
    If this is OK, then look at the Sharing & Permissions section at the bottom. Tell us everything you see there, or post a screenshot.

  • Unable to Create New RecordSet in Dreamweaver 8

    Hi,
    I'm new to databases. I'm trying to create a RecordSet using
    Dreamweaver 8. When I go to the Bindings panel and click the "+"
    sign and choose RecordSet, I name the RecordSet, I choose a
    connection, but there are no tables and the setup dialog box needs
    me to choose a table to create a RecordSet.
    The problem is when I try to create a dynamic table, I get an
    error stating that a cannot create the table without first creating
    a RecordSet. Worse, I cannot create a RecordSet without first
    creating a table. I'm stuck! How do I create the two if one cannot
    exist without the other?
    Yes, I have successfully connected to my testing server.

    First of all .. what server model? what database are you
    using?
    There are tables and there are tables. The "tables" you
    should see when
    creating a recordset are database tables. If you don't see
    them in the
    recordset window .. what is your connection string? Or is
    this a DSN?
    the "dynamic table" on the other hand is a table on your page
    created from
    the recordset and is not the same thing as the tables you see
    from your
    database. I wanted to make sure you knew the difference.
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: Dreamweaver CS3: The Missing Manual,
    DMX 2004: The Complete Reference, DMX 2004: A Beginner's
    Guide
    Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "sandisi" <[email protected]> wrote in
    message
    news:fkbuqt$pnd$[email protected]..
    > Hi,
    > I'm new to databases. I'm trying to create a RecordSet
    using Dreamweaver
    > 8.
    > When I go to the Bindings panel and click the "+" sign
    and choose
    > RecordSet, I
    > name the RecordSet, I choose a connection, but there are
    no tables and the
    > setup dialog box needs me to choose a table to create a
    RecordSet.
    >
    > The problem is when I try to create a dynamic table, I
    get an error
    > stating
    > that a cannot create the table without first creating a
    RecordSet. Worse,
    > I
    > cannot create a RecordSet without first creating a
    table. I'm stuck! How
    > do I
    > create the two if one cannot exist without the other?
    >
    > Yes, I have successfully connected to my testing server.
    >

  • Acrobat Pro 9.1 no longer creates PDFs from Word 2007

    I upgraded from Acrobat 7 to 9 specifically to gain more control over settings when making PDFs from Word 2007. This worked as I had hoped until the 9.1 vulnerability upgrade was installed. Now it will no longer create PDFs from Word 2007 documents at all.
    From within Word 2007, when I click on "Create PDF" (whether in the Office menu or Acrobat toolbar) it asks for a file name, but after I click "Save" does nothing. This is true even for the simplest possible document, using the "Default" settings for PDF "Preferences."
    If I right click the file name of the document in Windows Explorer, with Word 2007 closed, and click on "Convert to Adobe PDF" in the menu, it starts and the staus box comes up, but after a few seconds quits and displays "An unexpected error occurred. PDFMaker was unable produce the Adobe PDF."
    I can still "Save As" PDF in Word 2007, but this gives me little control over the format.
    Is there any way that I can get Acobat 9.1 to do what I bought it for, and what Adobe advertises it will do?

    Try printing to the Adobe PDF printer, the more fundamental process (PDF Maker is a preprocessor for the printer). If that does not work, then try with print-to-file selected. Open the file in Distiller and see if the PDF is created. If the latter happens, then check for AcroTray running in the background. It is required to automate the process and is needed by PDF Maker.

  • Adobe PDF Printer - no longer creating searchable files

    Hi,
    I am using Acrobat Professional 9.4.3 on Windows 7 64-bit.
    I just noticed Adobe PDF Printer is no longer creating searchable files and I can't figure out why or how to set it up to do so.
    Looking back at PDFs created in February, the PDF Producer is Acrobat Distiller 9.4.0.  These are searchable.
    Current files - which are not searchable - show the PDF Producer as Acrobat Distiller 9.4.2.  Should it be 9.4.3 - to match the current version of Professional?
    Any thoughts why this would be happening?
    Thank you,
    Kevin

    Hi,
    I think I found the answer.
    I updated to Acrobat Professional 9.4.4.  But that isn't the answer.
    I tracked it down to the installation of Firefox 4.
    Found these discussions:
    http://support.mozilla.com/en-US/questions/788993
    http://forums.mozillazine.org/viewtopic.php?f=23&t=2122001&sid=76d02be681f087f8bb0ba6ded50 55198
    Specifically, in the second discussion there is a comparsion of browsers with hardware acceleration turned on and off and their outputs (text vs graphic).
    When I turn hardware acceleration off, the PDF from the Adobe PDF Printer is searchable.
    I am using Firefox 4.0.1.
    Kevin

  • I can no longer create a PDF.  The response is Acro.Rd32.exe couldn't be downloaded.

    For some reason I can no longer create a PDF.  When I try to download the Reader, the response is Acro.Rd32.exe couldn't be downloaded.  I feel like I have tried everything!

    Please try to use Web UI for now(login at https://cloud.acrobat.com with your Adobe ID and password) to use our service.
    Please give me more information about your system that you are trying to install Adobe Reader.
    1. Have you installed Adobe Reader before?
    2. What OS you have
    3. What anti-virus application you have installed
    4. Did you see any other error messages?
    5. Have you tried to download Adobe Reader XI from www.adobe.com?
    Thank you.
    Hisami

  • I have premier elements 9. I can no longer create videos. Is it because of upgrade? Please tell me what to do. TY

    When I open elements 9- to create a new video- it is now just a blank, black/gray screen. I can no longer create videos. I can't upload from computer, etc. Is this from the new download of Rebel?
    Please tell me what to do, where to go. I realize this is an old version- but I liked it and it was easy to use....Am I required to purchase another version now?

    smokeymountainwedding
    You need to explain your situation further so we are clear on how to answer your question.
    1. What computer operating system is your Premiere Elements 9 running on? Have you been and are you now running the program
    as the 9.0.1 Update? When you the last time that you used this program successfully for one of your video productions?
    2. Are you trying to import video from the Canon EOS Rebel t3i or another model into Premiere Elements 9 workspace?
    From what I have read, the camera records with a MPEG4 video compression and has a .mov file extension. Is that true? What camera setting are you using 1920 x 1080, 1280 x 720, or other? And, what does it say for frames per second?
    So, do you have the latest version of QuickTime installed on your computer with Premiere Elements 9.
    Bottom line: are you using the same computer, same Premiere Elements 9, same Canon footage, that worked before and now it is not working?
    And, please clarify...important....do you meet this problem even before you try to import your Canon video into a project?
    When you open the program from its desktop icon, are you left facing a gray window with menu names across the top that will not open?
    Lots of questions, lots of answers needed.
    Your details will help us to help you.
    Thank you.
    ATR

  • I can no longer create a PDF from Excel?

    I have always been able to create a PDF straight from Office, specifically Excel. I downloaded the Adobe XI trial last week, and now I can no longer create a PDF. It says it can't file Adobe PDF Maker?

    I'm having the same issue.  I just downloaded new Adobe Pro XI (old version was IT dept corrupted) and got error that Adobe could not locate resource files.  I could in the past open and create pdf forms from excel, but not now

Maybe you are looking for

  • How can I check for references to previous server and remove them?

    I recently migrated several Win7 PC's off an old sbs2003 box to a new 2012 essentials server. All client data is stored on the server in a shared folder and that is mapped to the local PC's. Everything has been great, except we have noticed a delay o

  • Invalid Payment Name Error

    Dear all, I am getting an error "Invalid Payment Name" in outgoing payment window in sap b1 2005b. Kindly help on the issue.

  • EXCEL - SAP integration ... which way forward?

    Hi folks, A customer (having a SAP 4.6D system) would like to have an EXCEL sheet being populated with SAP data with some additional formatting (headers, subheading, totals, colouring cells based on certain values; etc ...) within the EXCEL sheet ...

  • CSE3 - Making images in color for print

    I am only used to one color printing. I'm using CSE3 and I'm supplying something in 2 colors. When the printers output, they will use certain color inks, and they told me I could use any 2 colors in my file. 1) How to I make the image a color? I have

  • Access Enforcer Duplicate emails sent for all stages of a workflow

    We are implementing AE 5.2. We have several initiators, each with several stages. We have a default role defined. Our email dispatcher is set to run every 3 minutes. For each stage, two emails are sent to each approver, including the manager. Does an