Search results

  1. R

    Error Unexpected network error

    Since the search doesn't seem to work and I'm not sure in which forum I have to post this question, I'll try this one. We're using a Windows Server 2008 machine with IIS to connect to a Progress database-server (version is irrelevant because we've had this problem for a long time with different...
  2. R

    Problem connecting a particular catalog on an existing connection

    I have a strange problem connecting a catalog on an open connection. When I connect to database A first and then issue a connect 'pathtodbB' as catalogname (database B) it's fine but the other way around I get this error. So connecting to database B is fine but then issue a command connect...
  3. R

    Index hint - Increasing performance on large query

    I have a large query joining eleven tables together with a resulset of 15000 records. By default (all records) the query has 6 predicates in the where clause. It will cost the databaseserver about ten seconds to cough up the recordset. When I add another predicate in the where clause the number...
  4. R

    Run queries on different databases with same connection

    Is it possible to use a single ODBC connection to query different Progress databases (running in different ports)? With SQL Server I can run queries over different databases as long as the account used for the connection has sufficient rights. Is this in any way possible for a Progress ODBC...
  5. R

    Openedge 10.2B 64 bit on MS Windows Server 2008

    Is this possible? We're having some problems installing it. There seems to be a r10.2B install somewhere but we can't find it in the downloadcenter. Is there anybody who can help us? We have ordered a server with 16 GB of RAM which we want to use for the Progress databaseserver (currently...
  6. R

    [DataDirect][ODBC Progress OpenEdge Wire Protocol driver]Error in row.

    Sometimes when I run a query for creating a recordset and iterate through the records I receive this error: [DataDirect][ODBC Progress OpenEdge Wire Protocol driver]Error in row. The problem is caused by the fact that one or more fields in the record holds more data than the display format...
  7. R

    ODBC - Unexpected Network Error

    Hi, I'm connecting to a Progress DB via ODBC and found out that one in 50 requests I receive this error. Microsoft OLE DB Provider for ODBC Drivers error '80004005' [DataDirect][ODBC Progress OpenEdge Wire Protocol driver]Unexpected Network Error. ErrNum = -1 I just found out that it's not...
  8. R

    How to update a field with extent

    If you have have a field named rubriek, datatype x(50) extent 15, how do I update row 2 of this field? I know how to get row 2 in a select query but now I want to know how to update and insert values into a specific row. Anyone?
  9. R

    Calling webspeedscript from VB6

    I try to execute a webspeedscript from VB6 but everytime I run my project Visual Basic crashed. This is what I did: Registered wsasp.dll Included the Progress Webspeed WSASP messenger Run the following piece of code: Dim objAgent As New WSASPLib.CWSAgent objAgent.ServiceName = "SERVICENAME"...
  10. R

    Querystringproblem

    How do I have to encode values in querystrings to Webspeed from ASP? I have the following problem: When I use Server.URLEncode to encode values it will sometimes crash the webserver when certain data is pasted into the textarea (from Word for example). When I only replace the & and the = sign...
  11. R

    Error 'ffffffff' on objAgent.Runscript

    When I perform a lot of queries in one script to the progress database via the component WSASP.WSAgent I often get the following error: Error 'ffffffff' and nothing more. This is not always the same RunScript command (different line numbers in the ASP code). I run an IIS 6.0 webserver. The...
  12. R

    Problems passing data from ASP to Webspeed

    When I sent data to Webspeed via a querystring from ASP for instance: objAgent.QueryString = "polisnummer=bla&kenteken=" & UCase(Request("kenteken")) I experience the following problem: when I post a html form-field called kenteken with the value "12-ab-LF", my value in webspeed should be...
  13. R

    Problem passing parameters from ASP to WebSpeed

    We have a problem with the objAgent.Querystring in a .asp file. We have for example the following code: objAgent.QueryString = "number=4184&othernumber=28" objAgent.RunScript "xml_number.htm" When we retrieve the values with the next part code in file xml_postcode.htm: def var number as...
Top