Rushmore/Optimization between FoxPro and CF

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Rushmore/Optimization between FoxPro and CF

    Ok... so my company has an 'ITEMS.DBF' table that stores every single line item
    we sell. If a line item is returned before we invoice/ship it, the record is
    deleted. Now, for those of you who know FoxPro, the record is still visible.
    When you use SQL statements in CF, Rushmore (which is the optimization process
    that discards things such as 'deleted' records) /OPTIMIZE is defaulted to 'ON'.
    The question is this:

    SET OPTIMIZE ON|OFF

    If this is the FoxPro statement that I need to make in accessing the
    information through <cfquery>, how do I send that command from a .cfm?

    Any help is greatly appreciated.

    -Nathan

    Natesac Guest

  2. Similar Questions and Discussions

    1. Foxpro access in Coldfusion 7
      With Coldfusion 5-6.1 we were accessing are old Foxpro 2.6 databases through ODBC using the Visual Foxpro Drivers. There wasn't any major problems....
    2. cf and foxpro stored procedures
      I have successfully connected to my colleagues foxpro database via odbc and can query, add and update info. I was hoping he could write into his...
    3. Connecting to Visual Foxpro via ASP
      Hello, I need to do some reporting via ASP pages, based on the data stored in our SBT Pro accounting system. SBT is based on Visual Foxpro...
    4. searching lex & yacc for foxPro
      please ,can someone help me : i want a lex & yacc for generating parser for the programming language foxPro. thanks for all -- Posted via...
    5. Trusted connection from FoxPro 5.0
      I am trying to create a trusted connection from a FoxPro 5.0 program to a SQL Server 6.5 via a VPN. I need to run an automated process, and of...
  3. #2

    Default Re: Rushmore/Optimization between FoxPro and CF


    One thing you can do is create a .prg with that statement, and a parameter to
    switch on/off. Compile the program and put the fxp file in the SYSTEM32
    directory. The Fox driver will treat it as a function, so you could call it
    like this:

    <CFQUERY datasource="#FOXDSN#" name="setoptimize">
    SELECT MyOptimizerProgram('ON') as result from SomeFoxTable
    </CFQUERY>


    philh Guest

  4. #3

    Default Re: Rushmore/Optimization between FoxPro and CF

    Awesome.

    Good thinkin'. :)

    Cheers!
    Nathan
    Natesac Guest

  5. #4

    Default Re: Rushmore/Optimization between FoxPro and CF

    Let me know if it works for you. We have a couple of these that work and are, shall I say, rather complex.
    philh Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139