Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: DrBee
  • Order by date
  1. DrBee

    PB DBCancel not working on Sybase ASE 12.5 data base

    I am trying to provide functionality for stopping a long retrieve. I am using PB 6.5 and our Sybase Data Base is on ASE 12.5.0. The DBParm Async is set to "1". In the PB program a "STOP" button has code behind it for dbcancel(). The RetrieveRow event has coding for checking...
  2. DrBee

    How do you interface PB6.5 with VSS?

    I am developing in PB6.5 and using ObjectCycle for source control. Obviously Objectcycle is no longer supported by Sybase and ObjectCycle has its quirks. What do I need to do to have my PB6.5 accept VSS for source control? Are there DLL's that I need? My company is already using VSS for internet...
  3. DrBee

    User Defined Event

    THIS IS THE CODE PASSING AN ARGUMENT TO THE USER DEFINED EVENT if ab_enable then this.event ue_EnablePrint (ab_enable) else this.post event ue_EnablePrint (ab_enable) end if THIS IS THE USER EVENT // ue_EnablePrint(ab_status) script for w_genapp_frame // Enables/disables File/Print menu...
  4. DrBee

    PB6.5 Web Interface Capability

    Can you load an Internet Explorer control into PB6.5 to provide web functionality inside your application?
  5. DrBee

    Replacement for Updateblob

    The UpdateBlob in this example was trying to place an initial value into letter_text which initially is null. Since the blob is not stored in the row with the remaining data it uses a pointer in the field letter_text that points to its location. This field will not have any pointers until it...
  6. DrBee

    Stored Procedure Problems using MSS 2000

    The stored procedure problem was resolved. The problem was that I was using a "datetime" variable as one of the arguments but MSS 2000 demanded that the variable be typed as "timestamp". It treated the datetime vaiable as a missing parameter. Thanks
  7. DrBee

    Stored Procedure Problems using MSS 2000

    I am connecting a Cold Fusion application through an ODBC connection to an NT4 server with MS SQL Server 2000 client installed. After connecting successfully all features seemed to work perfectly excepted stored procedures. My application doesn't seem to recognize them. Is it possible that they...
  8. DrBee

    Replacement for Updateblob

    I'm converting a PB6.5 application from Sybase System 11 to MSS 2000. I am having touble with the following embedded SQL statement: blob lb_tot_document UPDATEBLOB Fulfillment_Letter_Type SET letter_text = :lb_tot_Document WHERE letter_id = :ll_LetterId USING SQLCA ; It does not update...
  9. DrBee

    What's wrong with this SQL

    I ran this through SQL Analyzer in MS SQL Server 2000 and I got the following error: "query contains an outer join request that is not permissible". Can someone tell me what is wrong. SELECT Client.client_id, Client.client_alerts, Client.account_manager_name...
  10. DrBee

    How to Convert SelectBlob and Updateblob to MS SQL Server

    I am converting an application from Sybase SQL Server to Microsoft SQL Server 2000 and I need to know how to convert the following two embedded SQL statements: blob lblb_letter_text selectblob custom_letter into :lblb_letter_text from Fulfillment_Letter where fulfill_id = :ll_fulfill_id using...

Part and Inventory Search

Back
Top