Logical Debugging Help

Help!
I've written an application that isn't working exactly like I think it should. The program is supposed to compare two files. If there is a string in file one that is not in file two, then it is supposed to write that string to a third file. To help clarify, the first file is a final list of students that are taking the class. The second file is a list of students that attended for that session (they will be registering electronically). Therefore, I need the program to exam the two lists and tell me who was absent. At the moment, it will work for the first absent person (ie. it writes the student information to the third file so I know they are absent) but it seems to just stop working after that. I'm sure there is a problem with the logic...but I can't figure out where. Below is the code that i'm using. I'd appreciate any assistance!
Thanks!
John
public void actionTaken(){
try {
//File with final registration list
classList = new BufferedReader(new FileReader("classList.txt"));
//File that has recorded attendance
studentInput = new BufferedReader(new FileReader("studentInput.txt"));
// String written to this file if they were absent.
absent = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("Absent.txt", true)));
// First while loop examines every line that is in the classList.txt file. Should advance to the next line after the nested while loop executes.
while ((cLT = classList.readLine()) != null){
// Nested while loop examines every line in the studentInput.txt
while ((sIT = studentInput.readLine()) != null){     
//If statement checks to see if a student has logged in.
if (cLT.equals(sIT)){
countTemp++; //countTemp is tripped if the student has logged in.
studentInput.close(); //Closes file after the entire file has been examined.     
//If statement checks the countTemp to see if the student registered.
if (countTemp == 0){ //Writes to the absent file if this line is true.
absent.newLine();
absent.write(cLT);
absent.close();
countTemp = 0; //reinitialized to test next student name.
classList.close(); //Closes file after the entire file has been examined.
} catch (IOException x) {

You close the student attendance file (studentInput) after you read the first student name from the class list!!!
Unless the files are going to get really big, I wouldn't do it this way. I'd create a Map of students who attended. Then I'd go through the names list and see if the names are present in the map. That way you could re-use the map for every student name.
If you don't want to do it that way, you're going to have to make assumptions about the ordering of the two name lists, and whether one is necessarily a subset of the other.

Similar Messages

  • How does logical volume helps in performance in AIX..Should have posted IBM

    We are setting up a new DB server and the disks are in RAID5 config,Does putting data and index in different logical volumes helps in performance

    (I hope I'm not falling for April Fools joke here...)
    Hi Maran,
    As someone already answered, if both volumes are striped against all available disks, you can put everything in one volume and expect equal or better performance.
    However, I want to warn you from optimizing the disk structure without knowing that your database will really bottleneck on disk access to index and data blocks. My storage manager and I wasted countless hours with such optimizations before realizing that we are wasting our time because the application code contains so many functions that disk IO is not even close to being an issue.
    -- Chen

  • HT4059 I purchased an iBook and accidentally paused while downloading. Now I cannot download the rest. Message keeps telling to return to purchase site to download, but everything I click on "Download", the message would reappear. Circular logic. Help!

    I purchased A book on iBooks and accidentally paused it while downloading. Now I cannot continue it's downloading. I get a message saying I have already purchased the book and to go to Purchased page to download it. Trouble is, every time I do that, tapping the "Download" button, the same message reappears. EVERY TIME. Circular logic. Help!

    Okay, you need to contact support definitely about what's going on. Here is a form that will send an e-mail into support for you:
    http://www.apple.com/emea/support/itunes/contact.html
    As far as the prices, the difference is likely the laptop version is the SD version and the iPad one is available in HD. That's the only reason you'll see a price difference. It has nothing to do with the device with movies/movie rentals. Apps yes, these no.

  • How to write code for this logic, plz help me very urgent

    Hi All,
    i am new to sap-abap, i got this work and i m working on this can any body help me in writing code, plz help me, this is very very urgent.
    here  i m giving my logic, can anybody send me the code related to this logic.
    this is very urgent .
    this program o/p should be in ALV format and need to create one commond 'SAVE" on this o/t list  if  user clicks save processedon and processedby fields in ZFIBUE should be updated automatically.
    i am creating one custom table zfibue having fields: (serialno, bukrs, matnr,prdha,hkont,gsber,wrbtr,budat, credate, cretime,processed, processedon, processedby,mapped)
    fields of zfibue:
    serailno = numc
    bukrs = char
    matnr = char
    prdha = char
    hkont = char
    gsber = char
    wrbtr = char
    budat = date
    credate = date
    cretime = time
    processed= char
    processedon = date
    processedby = char
    mapped = char      are   belongs to above type data types
    and seelct-optionfields:  s_bukrs for bseg-bukrs
                                        s_hkont for bseg-hkont,
                                         s_budat for bkpf-budat,
                                         s_processed for zfibue-processed,
                                          s_processedon for zfibue-processedon,
                                          s_mapped. for zfibue-mapped
    parameters: p_chk1 as checkbox,
                      p_chk2 as checkbox.
                      p_filepath type rlgrap-filename.
    1.1 Validate the user inputs (S_BUKRS and S_HKONT) against respective check tables (T001 and SKB1). If the validation fails, provide respective error message. Eg: “Invalid input for Company Code”.
    1.2 Fetch SERIALNO, BUKRS, MATNR, PRDHA, HKONT, GSBER, WRBTR, BUDAT, CREDATE, CRETIME, PROCESSED, PROCESSEDON, PROCESSEDBY, MAPPED from table ZFIBUE into internal table GT_ZFIBUE where BUKRS IN S_BUKRS, HKONT IN S_HKONT, BUDAT IN S_BUDAT, PROCESSED IN S_PROCESSED, PROCESSEDON IN S_PROCESSEDON, and MAPPED IN S_MAPPED.
    1.3 If P_CHK2 = ‘X’, go to step 1.11. Else continue.
    1.4 If P_CHK1 = ‘X’, continue. Else go to step 1.9
    1.5 Fetch MATNR, PRDHA from MARA into GT_MARA for all entries in GT_ZFIBUE where MATNR = GT_ZFIBUE-MATNR.
    1.6 Sort and delete adjacent duplicates from GT_MARA based on MATNR.
    1.7 Loop through GT_ZFIBUE where PRDHA = blank.
              Read Table GT_MARA based on MATNR = GT_ZFIBUE-MATNR.
              IF sy-subrc = 0.
                     Move GT_MARA-PRDHA to GT_ZFIBUE-PRDHA.
                  Modify Table GT_ZFIBUE. “Update Product Hierarchy
                 Endif.
        Fetch PRDHA, GSBER from ZFIBU into GT_ZFIBU for all entries in GT_ZFIBUE where PRDHA = GT_ZFIBUE-PRDHA.
        Read Table GT_ZFIBU based on PRDHA = GT_ZFIBUE-PRDHA.
              IF sy-subrc = 0.
                     Move GT_ZFIBU-GSBER to GT_ZFIBUE-GSBER.
                  Move “X” to GT_ZFIBUE-MAPPED.      
                  Modify Table GT_ZFIBUE.
                 Endif.   
    Endloop.
    1.8 Modify database table ZFIBUE from GT_ZFIBUE.
    1.9 Fill the field catalog table GT_FIELDCAT using the details of output fields listed in section “Inputs/Outputs” (above).
       Eg:                 LWA_ FIELDCAT -SELTEXT_L = 'Serial Number’.
                              LWA_ FIELDCAT -DATATYPE = ‘NUMC’.
                              LWA_ FIELDCAT -OUTPUTLEN = 9.
                              LWA_ FIELDCAT -TABNAME = 'GT_ZFIBUE'.
                              LWA_ FIELDCAT-FIELDNAME = 'SERIALNO'.
              Append LWA_FIELDCAT to GT_FIELDCAT
    Note: a) The output field GT_ZFIBUE-PROCESSED will be editable marking INPUT = “X” in field catalog (GT_FIELDCAT).
             b) The standard ALV functionality will be used to give the user option for selecting all or blocks of entries at a time.
             c) The PF-STATUS STANDARD_FULLSCREEN from function group SLVC_FULLSCREEN will be copied to the program and modified to include a “SAVE” button.
    1.10 Call the function module REUSE_ALV_GRID_DISPLAY passing output table GT_ZFIBUE and field catalog GT_FIELDCAT. Additional parameters like I_CALLBACK_PF_STATUS_SET (= ‘ZFIBUESTAT’) and I_CALLBACK_USER_COMMAND (=’HANDLE_USER_ACTION’) will also be passed to handle user events. Go to 2.14.
    1.11 Download the file to P_FILEPATH using function module GUI_DOWNLOAD passing GT_ZFIBUE.
    1.12 Exit Program.
    Logic to be implemented in  routine “Handle_User_Action”
    This routine will have the following interface:
    FORM Handle_User_Action  USING r_ucomm LIKE sy-ucomm
                                                               rs_selfield TYPE slis_selfield.
    ENDFORM.
    Following logic will be implemented in this routine:
    1.     If r_ucomm = ‘SAVE’, continue. Else exit.
    2.     Loop through GT_ZFIBUE where SEL_ROW = ‘X’. “Row is selected
    a.     IF GT_ZFIBUE-PROCESSED = ‘X’.
    i.     GT_ZFIBUE-PROCESSEDON = SY-DATUM.
    ii.     GT_ZFIBUE-PROCESSEDBY = SY-UNAME.
    iii.     MODIFY ZFIBUE FROM work area GT_ZFIBUE.
    Endif.
    Endloop.

    Hi Swathi,
    If it's very very urgent then you better get on with it, don't waste time on the web. Chop chop.

  • Soundtrack Pro making a LOT of files - used to working in Logic, need help

    So I'm used to working with Logic Studio/7.2/etc, and it's my first foray into working with Soundtrack Pro at work. My questions are this: When I use the razorblade tool (since I can't find an equivalent to the split tool in logic) in soundtrack to cut up a sequence, it seems to be creating a LOT of extra files:
    http://www.1217design.com/pics/stp_question.png is an example of what I mean. Is this supposed to happen? The recorded files themselves were done in FCP and sent to Soundtrack Pro via the Send to STP Multitrack session function.
    What I'm trying to find out is: Is this supposed to be happening? How can I stop this from happening? Are all of these extra files necessary in order to export the final project? And what will happen if I delete them?
    I just want to know because the folder is now 4.71gb for a 30 second audio file (the final aif export is roughly 30mb), and there's over 200 of these extra files that have been created in the process of working on this project.
    If this is what is necessary to work in Final Cut then I won't be able to work with FCP due to size issues (which is a shame as I feel so much more comfortable working within that environment than I do working in FCP).
    Thanks for the help in advance,
    Sean

    Sean A wrote:
    By doing this, will it still create all of those extra files? That's what I'm trying to figure out. Is it just from the blade tool being used?
    For all edits, yeah, baby, STP will generate more files than cows create methane.
    First, I know what works for me, but I'm still learning, so I strongly encourage you to keep a COMPLETE BACKUP of all projects until you know your workflow. Also, you may have Preferences set up differently than I do, so you may not find the same paths as what I describe here.
    When you have an audio file the way you want it, and you're confident that you won't need those edit files again (be SURE) Process > Flatten All Actions (or Audible Actions) and Save that audio file. Then -- as I understand it so far -- you can safely trash all the edits related to that file. (If you use Photoshop or similar visual programs, it's the same idea.)
    During my first few weeks of intensive STP work, my drive grew more and more sluggish, for no reasons known to me. I saw disk space shrinking rapidly. Finally I figured it had to have something to do with STP, so I started searching and eventually I found my edits piling up in home/Documents/Soundtrack Pro Documents, especially (for me) in Edited Media. Since they all came from projects I'd finished and exported to AAC and MP3, I was comfortable trashing them all. Suddenly, whoa, I had an extra 12 GB of disk space available.
    Just keep those edit files until you are CERTAIN that you know what you're doing and that you're DONE. Otherwise, when some project needs one precious little 3MB turn of a phrase, you may find yourself confronting suicidal or homicidal tendencies.
    I welcome further clarification and/or correction from people who know more and can explain it better.
    Best,
    chuck

  • Logic Enironment HELP!!! External Midi NOT SYNCING UP with Ensoniq ASR-X.

    I need help setting up an environment for my Ensoniq ASR-X. As it Stands, I have been able to get my Axium 49 to trigger sounds in the ASR-x and I have also been able to get Logic to start the ASR's sequencer but for some reason I get latency and a phase effect from the ASR.
    All I want to do is toggle between making the ASR-X a slave so I can record tracks that are made on the machine into logic or make Logic the SLAVE so I can press the play button on the ASR and record my audio and midi at the same time into Logic 8.
    If that's too much, Then please just help me to get my machine into an environment that will work inside logic.
    Thanx!
    P.S.
    Amy advice on how to set up the midi routing between my Axium 49, M-Audio Fast Track Pro USB interface and ASR-X to work together more smoothly would be much appreciated.

    Hi. Thanks for taking the time to reply. I did try that and it didn't solve the problem.
    What I did last night was to trash all my Logic Express files and the Logic pro install files as per the advice on the Logic Pro Troubleshooting Basics page. Then I reinstalled and updated Logic Pro.
    That seemed to fix the problem. It may have been that having a 7.1.1 version of Logic Express and a 7.2 version of Logic Pro on the same machine was causing a confusion over preferences (if that makes sense; I'm not a computer expert). At any rate, I have my insert slots back now and I'm happy.
    Thanks again for taking the time to respond.
    iMac G5 1.8 gHz   Mac OS X (10.4.8)   80g hard drive, Matshita DVD-R UJ-825, 1 GB RAM

  • New To Logic need help using drum samples.

    Hey guys im extremly new to logic actually this is my first trip into a mac doing pro audio. Ive been using windows in my studio for years and im trying to learn the ins and outs of Logic right now. My question is im using a set of samples (trigger thru middi usually scored out in staff view) call the steven slate samples usually in windows im using the dr008 to load and trigger them. What would be the equivilent in Logic can i load those samples into ultra beat and trigger them off the staff view?? Again very new to logic but i like what im seeing and i just need come exp. help to get started and cought up to where i was on a PC/Sonar System. Thanx for the help in advance

    Isn't the dr-008 great? I wish they had a Mac version.
    If you're using midi, yes you could configure either UB or the ESX24 with your samples etc.
    The closest thing to the dr-008 that I've found for Mac is either iDrum or Battery - it's fun to play with either in the same way as the DR.

  • I have problems with the logic pro help menu, it´s in French and not English. Please help me

    When i open the help meny in Logic pro X, everything is in French instead of English. I really need some help to switch.

    or else:
    http://www.bbc.co.uk/languages/french/
    Heh!

  • Need Debugging Help

    Hi All
    I am learning Plugins developement for InDesign CS2. In the SDK there is a ww-plugins.pdf, in which it mentioned how we will develop a plugins. I have tried but not able to do it. When I am making plugins the following error I am getting. I know it is a simple project settings.
    ================================================
    Could not find or load the file WFPActionComponent.cpp for target Debug for project WFP.mcp.
    Could not find or load the file WFPDialogController.cpp for target Debug for project WFP.mcp.
    Could not find or load the file WFPDialogObserver.cpp for target Debug for project WFP.mcp.
    Could not find or load the file WFPNoStrip.cpp for target Debug for project WFP.mcp.
    Could not find or load the file WFPID.cpp for target Debug for project WFP.mcp.
    Could not find or load the file WFP.fr for target Debug for project WFP.mcp.
    Could not find or load the file PublicPluginDbg.Lib for target Debug for project WFP.mcp.
    Could not find or load the file PMMSLRuntimeDbg.Lib for target Debug for project WFP.mcp.
    Could not find or load the file PMGlobalChainDbg.Lib for target Debug for project WFP.mcp.
    Could not find or load the file SDKPlugInEntrypoint.cpp for target Debug for project WFP.mcp.
    Could not find or load the file SDKInfoButton.r for target Debug for project WFP.mcp.
    ===============================================
    Below are the path settings
    Target Setting: {project}../debug/SDK.
    Please someone help me.
    Thanks
    Rajeev Kumar

    Hi
    I am again back to give some more inputs.
    As I import the project below Notification/Errors I am getting. I think you well uderstand by this.
    ==================================
    The following access path in target Debug of project WriteFishPrice.mcp cannot be found:
    {Project}../../../source/precomp/codewarrior/(debug)
    The following access path in target Debug of project WriteFishPrice.mcp cannot be found:
    {Project}../../../source/precomp
    The following access path in target Debug of project WriteFishPrice.mcp cannot be found:
    {Project}../../../source/public/interfaces
    The following access path in target Debug of project WriteFishPrice.mcp cannot be found:
    {Project}../../../source/public/includes
    The following access path in target Debug of project WriteFishPrice.mcp cannot be found:
    {Project}../../../source/public/widgets/includes
    The following access path in target Debug of project WriteFishPrice.mcp cannot be found:
    {Project}../../../source/sdksamples/common
    The following access path in target Debug of project WriteFishPrice.mcp cannot be found:
    {Project}../../../build/mac/debug
    The following access path in target Debug of project WriteFishPrice.mcp cannot be found:
    {Project}../../../external/afl/includes
    The following access path in target Debug of project WriteFishPrice.mcp cannot be found:
    {Project}../../../external/boost
    The following access path in target Debug of project WriteFishPrice.mcp cannot be found:
    {Project}../../../build/mac/debug/packagefolder/contents/macos
    The following access path in target Release of project WriteFishPrice.mcp cannot be found:
    {Project}../../../source/precomp/CodeWarrior/(Release)
    The following access path in target Release of project WriteFishPrice.mcp cannot be found:
    {Project}../../../source/precomp
    The following access path in target Release of project WriteFishPrice.mcp cannot be found:
    {Project}../../../source/public/interfaces
    The following access path in target Release of project WriteFishPrice.mcp cannot be found:
    {Project}../../../source/public/includes
    The following access path in target Release of project WriteFishPrice.mcp cannot be found:
    {Project}../../../source/public/widgets/includes
    The following access path in target Release of project WriteFishPrice.mcp cannot be found:
    {Project}../../../source/sdksamples/common
    The following access path in target Release of project WriteFishPrice.mcp cannot be found:
    {Project}../../../build/mac/release
    The following access path in target Release of project WriteFishPrice.mcp cannot be found:
    {Project}../../../external/afl/includes
    The following access path in target Release of project WriteFishPrice.mcp cannot be found:
    {Project}../../../external/boost
    The following access path in target Release of project WriteFishPrice.mcp cannot be found:
    {Project}../../../build/mac/release/packagefolder/contents/macos
    ================================
    Please suggest me.
    Thanks
    Rajeev

  • Sapscript Debugging help

    Hi Experts,
    i am new to SAP Script ,i want to debugg sapscript MEDRUCK when i create Purchase order thorugh ME21N .
    i tried to do through SE71 =->utilities->active debugger..
    print out is getting but debugger is not stopping at MEDRUCK .
    I want to stop debugger at MEDRUCK and Printprogram when i create Purchase order through ME21N tcode.i have done all required NACE sttings and print out is getting.
    Please help.

    You Can debug a SAP Script by activating debugger in two ways
    1.In SE71->Menu->Utilities->Activate Debugger, then debugger will be get activated and when your print program is executing Script Debugger will be in active and you can proceed with your debugging.
    2. Goto se38-> RSTXDBUG ->Execute this same as going thru in se71-> Menu, now debugger will be activated.
    for details refer this link:
    http://help.sap.com/saphelp_erp2004/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    Regards,
    Maha

  • Paid debugging help

    I'm nearing the end of a deadline for a project (tomorrow)
    that has proven to be too much for me to handle on my own in the
    time allowed. I'm still new to Flex and I'm not able to debug some
    of the issues as quickly as I'd like. If anyone can provide some
    help on this I'm willing to pay for your services. I have a project
    posted on Elance for further infromation:
    http://www.elance.com/c/rfp/main/jobInfo.pl?jobid=14566430&catId=10216&ajax=2

    As we may wait for a long time before seeing such a tool if we ever do, I will describe my own tip.
    I never build long formulas in a single task.
    I build components in contiguous cells then, when every component behaves correctly, I gather them in a single formula.
    It's an efficient time saver and it helped me to keep some hair on my head
    Yvan KOENIG (from FRANCE jeudi 20 novembre 2008 23:06:28)

  • Debugging Help - NetBeans IDE

    I am trying to debug java programs in NetBeans IDE but when I start the debugger using F7 Key, it points to some old class file that I had debugged previously.
    Can somebody suggest what's going on? What setting do I need to do in order to debug my current class file/ source code.
    Any help would be greatly aprpeciated.....
    Thanks!

    VShan wrote:
    Dude ... I know that That makes you look even more stupid...
    but I thought may be somebody would have came across this kind of problemMaybe someone has come across my problem too, which is how to pass the flight medical for a PPL with eyes that are sub-marginal, but I don't ask that here because it's not the right place.
    Capice?

  • Debugging help required

    Hi,
    Am new to webdynpro. I have created a simple webdynpro application and now i want to debugg it.
    but however , In the sap j2ee engine when i set the debugging status of the server to ON, and refresh the server the server does not seem to be running properly. yello colour comes on the server instead of green.
    can anyone help on this?
    Regards,
    Rashmi.

    Hi Rashmi,
    When you set the debugging status of the server to ON, it takes some time to restart the server.
    So, check after sometime, it would show status as green.
    And then go to debug option, there choose debug as..
    one wizard appears there configure your appication for debugging.
    Then click on debug button.Your debugging starts.
    Don't forget to put break points.
    Regards,
    Bhavik

  • Physical / Logical CPUs help

    Hello there. Im a bit confused about what Physical / Logical CPUs really means. I ran 3dmark06 to test out my new build and it was very disapointign. My motherboard is the P6N sli board. The processor is the x6800 and not overclocked. I did update to the newest bios. It seems only one of the cores is being recognized. Here is what my results look like :
    Below is the result details of your submitted project.
    Main Test Results
    3DMark Score 4293 3DMarks
    SM 2.0 Score 1829 Marks
    SM 3.0 Score 1835 Marks
    CPU Score 1267 Marks
    Detailed Test Results
    Graphics Tests
    1 - Return to Proxycon 14.81 FPS
    2 - Firefly Forest 15.671 FPS
    CPU Tests
    CPU1 - Red Valley 0.398 FPS
    CPU2 - Red Valley 0.646 FPS
    Any help thanks

    Ok updated sig to new build. Ya i understand that. Its just wierd because this is what it reads about my cores:
    Processor: Intel Core 2 2931 MHz
    Physical / Logical CPUs: 1 / 1
    MultiCore: 2 Processor Cores
    HyperThreading: Available Disabled
    Graphics Card: NVIDIA GeForce 7900 GT
    Graphics Driver: NVIDIA GeForce 7900 GT/GTO
    Co-operative adapters: No
    DirectX Version: 9.0c
    System Memory: 2048 MB
    Disk Space: 156.33 GB
    Motherboard Manufacturer: MSI
    Motherboard Model: MS-7350
    Operating System: Microsoft Windows XP
    CPUZ telling me i only have one core as well.

  • One works vi, one doesn't. debugging help.

    The attached vi sends a series of xml files to two separate servers. The files configure a camera; turn it on; then, turn it off. It works over and over again. When I add the same code to a more complicated vi, something hangs up. I'm looking for a suggestions, other than running highlighted that might help me debug this.
    Thanks
    Attachments:
    Dazle.vi ‏68 KB

    Hi exo,
    You may also want to try setting a breakpoint in your code, then step through it.  You can set a breakpoint from the Tools Palette (View » Tools Palette).  From the Tools Palette, click the Set/Clear Breakpoint button.  You can now set breakpoints in the code, which will halt execution.  You can then step throught the execution using the Step Into, Step Over, and Step Out of buttons, which are all found on the toolbar.  Like Andre said, you can also use Probes to debug your application.  These tools are explained in more detail in the link below, please let me know if you have any other questions!
    LabVIEW Debugging Techniques
    Regards,
    Erik J.
    Applications Engineer
    National Instruments

Maybe you are looking for

  • Itunes has encountered a problem and has to close ---- Please help me

    I had to restore my computer this week. itunes was working fine before I restored. I have a video ipod. I installed from the disc but it encountered a problem half way through. I removed this using the control panel. I then downloaded itunes from app

  • Jsp:usebean How to get value of an object from a bean

    I am new to JSP and am struggling from past few days to solve a problem. Consider the below scenario Class Book{ private String author; public void setAuthor(String author) public String getAuthor(){ return author; } Class Rack{ private Book []books;

  • 503 Service Unavailable? unable open irj/portal and NWA for SAP CE 7.3 trial version

    Hi Experts, I am not able to open irj/portal and nwa for my recently installed SAP CE 7.3 trail version. Only start page is opening. SAP J2EE engine and data base is up and runing. 1. Time 2014 07 03 10:18:04:932 Severity Error Filename defaultTrace_

  • Securing remote FLVs

    First off, let me admit that I'm brand new to Flash. Ok ... now that I've gotten that out of the way I'll explain my situation. I'm hosting about 60 FLVs for a customer and he's accessing/calling the movies from his Web site when one of his customers

  • Regarding oops concept

    Hi , I want to know that by using oops concepts rather then traditional reporting ,is there any significant improvemnet in  performance of report execution and if yes then why?