cursor and its problems

create or replace package test1 is

type rec_DropDownList_Item is MADE
(
VARCHAR2 (200) TEXT.
xsVALUE VARCHAR2 (200));

TYPE cur_DropDownList IS REF CURSOR RETURN rec_DropDownList_Item;

procedure Getprocedure_yearreportdisplay (my_rec_parameter rec_DropDownList_Item) is

cursor c1_ptr is

Select 'x' as a TEXT, 'y' as xsVALUE from dual;

Start

Open c1_ptr;
extract the c1_ptr in my_rec;
If found then % c1_ptr
c1_ptr;

If c1_ptr % notfound then

Dbms_Output.put_line ("' big mistake");
end if;
close c1_ptr;

end Getprocedure_yearreportdisplay;
end Test1;

I try to create a slider that refers to a record and have this slider back, so that I can use it in c# ti display the simple, but I'm getting several errors. See the above code. Thank you.

remove the double post...

Published by: odie_63 on May 22, 2010 12:53

Tags: Database

Similar Questions

  • Satellite L750D - update BIOS 2.1 and its problem

    Hello

    I have little problem. I was downloaded from your website 2.1 BIOS for Toshiba Satellite L750D (PSK32E).

    I have been updating BIOS 2.1 and start the problem with the sound. When I start the game, music or else minutes 2 first sound plays correctly but then it stops without reason. No noise at all. I've been reinstalled op system but the problem is still there.

    Sound works for 2 minutes only then is completely off. Each application to start with sound plays 2 minutes and stop all silent is. I did a probe on my laptop the mother she s a computer portable twin. I have updated bios same problem 2 minutes and then no sound. My OS is win 8 64 pro my laptop mother is with win 7 x 64 premium.

    Two BIOS updated ver 2.1 on L750D and the problem is the same. Please fix the BIOS.

    The BIOS seems to be very old. I was released nearly 1.5 years ago, so to be honest, I doubt that his and BIOS problem.

    I had the similar problem with my other laptop equipped with a Realtek sound card.
    The sound appeared after connection and remove the headphone jack
    But I could solve this latest installation updated audio driver the Realtek driver page.

    But it seems that your Satellite does not support Realtek audio chip but the Conexant audio chip.
    Therefore, the solution could not be useful for you.

    However, I think that you need to update the audio driver. I recommend you google for driver Conexant SmartAudio HD and test the latest version of the driver available.
    On the internet, I find the Conexant SmartAudio HD driver version 8.65.9.51 for Win 7 / 8 Win / Win 8.1
    Not quite sure if this is the latest version, but you can test it.

    To manually update your driver:

    1. go into the Device Manager (right click on my computer, choose manage and then find Device Manager in the left panel)
    2. right click on the device you want to update and choose Update driver software
    3. choose Select the location of the new driver manually and navigate to the folder where you downloaded the driver

  • Problem with cursor and software problem (hard to explain)

    I have a very strange problem and forgive me because I try to explain it.

    For some reason any every so often that I could be typing or doing whatever it is and the application stops responding and a sound will play whenever I press a key. It's almost as if someone clicked on the desktop, so when I type it does nothing. As soon as I click on the program, he responds once again, and I can't begin to do what I want with it.
    This happens about every 2 minutes or so, sometimes more, sometimes less. It can be completely random.
    I tried different mouse and try to use another USB port. Still without success!
    Once again I apologize for the awkward explanation, but I don't really know how else to explain it.
    Thanks in advance!

    Hello

    1. the problem occurs with a particular program or programs?
    2. don't you make changes to the computer before the show?
    3. What is the brand and model of the mouse?

    Method 1
    I suggest you perform the clean boot and check if the problem persists.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/kb/929135
    Note: Follow step 7 clean boot KB929135 article to reset the computer in normal mode.

    Method 2
    I suggest you try the steps from the following link:

    Mouse, touchpad and keyboard with Windows problems
    http://Windows.Microsoft.com/en-us/Windows/help/Mouse-touchpad-and-keyboard-problems-in-Windows

  • problem with the CURSOR and WITH clause

    Hi guys,.

    I have never created a package before. I try to run it, but I get:
    ORA-06550: line 8, column 16:
    PLS-00382: expression is of the wrong type
    ORA-06550: line 8, column 3:
    PL/SQL: Statement ignored

    I know that my problem is in the next section

    OPEN FOR V_io_cursor

    with GOT_R_NUM like)


    Is the above correct?

    When I copy paste the "heart" of the query, it works very well. I really have a problem with the CURSOR and the declaration.

    Here's the code in its entirety. I know that the code is much more then he returned, but ignore this overload that was to do some tests to make sure that I can achieve any query request.

    CREATE OR REPLACE
    PKG_SPF_NATIONALREPORTS PACKAGE BODY IS

    PROCEDURE GET_NATIONAL_TOTAL_RESULTS (P_SelectFields IN varchar2, P_SUMFields IN varchar2, io_cursor IN OUT C_RESULTS)
    IS
    v_io_cursor C_RESULTS;

    BEGIN

    OPEN FOR V_io_cursor

    with GOT_R_NUM like)
    SELECT
    -START P_SelectFields
    r.cli_served,
    r.EIER,
    -END P_SelectFields
    r.RC,
    r.Year_ID,
    r.period_id,
    r.agreement_type_ind,
    CONTRACT_NUMBER. CONTRACT_NUMBER_TEXT,
    YEARS.year_desc,
    RC_CODE.rc_code_id,
    RC_CODE.rc_code,
    AHRDA HOLDERS. AHRDA_ID,
    AHRDA HOLDERS. REGION_ID,
    AHRDA HOLDERS. PROVINCE_ID,
    AGREEMENT_TYPE. AGREEMENT_TYPE_ID,
    AGREEMENT_TYPE. AGREEMENT_TYPE_DESC_EN,
    ROW_NUMBER() over (partition R.YEAR_ID, R.CONTRACT_Number_Text
    order by
    P.PERIOD_desc
    (/ / DESC NULLS LAST) AS r_num
    RESULT r
    JOIN period p ON r.period_id = p.period_id
    JOIN CONTRACT_NUMBER ON r.contract_number_text = CONTRACT_NUMBER. CONTRACT_NUMBER_TEXT
    JOIN RC_CODE ON contract_number.rc_code_id = rc_code.rc_code_id
    JOIN AHRDA holders ON ahrda.ahrda_id = rc_code.ahrda_id
    JOIN AGREEMENT_TYPE WE AHRDAS. AGREEMENT_TYPE_ID = AGREEMENT_TYPE. AGREEMENT_TYPE_id
    JOIN the YEARS WE r.year_id = YEARS.year_id
    )
    SELECT year_desc
    -START P_SUMFields
    SUM (cli_served) AS sum_cli_served
    The SUM (eier) AS sum_eier
    -END P_SUMFields
    OF got_r_num
    GROUP BY year_desc
    ORDER BY year_desc
    ;

    io_cursor: = v_io_cursor;

    END GET_NATIONAL_TOTAL_RESULTS;

    Agree - all this talk of loops FOR is completely irrelvant.
    A refcursor is usually the exact mechanism to return a result set.

    What is C_RESULTS?

    Just use SYS_REFCURSOR.

    No need for local variable.

    OUT why? Not just walk OUT?

    PROCEDURE GET_NATIONAL_TOTAL_RESULTS
    (P_SelectFields IN varchar2, P_SUMFields IN varchar2, io_cursor OUT SYS_REFCURSOR)
    IS
    BEGIN
     OPEN io_cursor FOR ...
    END;
    
  • I talked to someone at Microsoft who said they can take possession of my PC to fix its problems. Please tell me how. I had a contract with supportrix and was never satisfied.

    Tech online as supportrix

    I talked to someone at Microsoft who said they can take possession of my PC to fix its problems.  Please tell me how.  I had a contract with supportrix and was never satisfied.  My PC has needed help and di yes I.

    Hello

    Have you contacted Microsoft and they gave you the call?

    Microsoft or our partners make unsolicited phone calls (also known as the telephone canvassing) you charge for security patches or software.

    Click on the below mentioned link phishing appeals:

    http://www.Microsoft.com/security/online-privacy/phishing-symptoms.aspx

    Hope this information helps.

  • I'm having a problem with my Windows Media Player and its automatic scoring system.

    I'm having a problem with my Windows media player and its rating system. Usually in Windows Media Player the blue side star system only rate once internet-based critical car. Then after playing constant song change the blue stars. However, on my Windows Media Player ratings only to have automatically scored only once and every time I play the song the side remains the same.

    Whenever I play a song in Windows Media Player 11 it rates the song but when I play the song again the rating remains the same. It auto-taux only the song once. How can I fix it?

    chk this link

    How are ratings used in Windows Media Player?

    http://Windows.Microsoft.com/en-us/Windows-Vista/how-are-ratings-used-in-Windows-Media-Player

  • r beeb used before on pc. The problem is that these two PCs are thrown NAWL avay chrased long, I hava a few photos on the program and its impossible to buy a new number for one that oldc product. What should do?

    r beeb used before on pc. The problem is that these two PCs are thrown NAWL avay chrased long, I hava a few photos on the program and its impossible to buy a new number for one that oldc product. What should do?

    If you have the serial number, you can contact the Adobe Support via chat (when they are available - not weekend) and ask them to reset your activations.  Which will allow you to reinstall and activate again using the serial number, which you have now.

    To the link below, click on the still need help? the option in the blue box below and choose the option to chat...
    Make sure that you are logged on the Adobe site, having cookies enabled, clearing your cookie cache.  If it fails to connect, try to use another browser.

    Serial number and activation support (non - CC) chat
    https://helpx.Adobe.com/contact.html?step=PHSP-PHXS_downloading-installing-setting-up_lice nsing-activation_stillNeedHelp

  • When I use the brush or eraser, an O symbol appears next to my cursor and prevents me from drawing a line. Does anyone know a solution to this problem?

    When I use the tool brush or eraser, over every other shot, I get a sign O (circle with a line through it) next to the brush shape / cursor and can't shoot. Please help, this is very frustrating and disrupting my work flow! I paint each frame of the animation, so you can imagine, every other shot is quite often.
    There the layers locked below my active drawing layer, that makes me wonder if Flash is trying to tell me I can not shoot these layers, but I know that more I need these layers there to guide the design of my active layer. I have encountered this problem before with layers being locked and these. What Miss me?

    Any idea is appreciated.

    Thank you!

    I just realized my problem!
    Sorry, it is partially due to my impatience; I get the "illegal sign" when I press a shortcut key to switch from one tool to the other and try to make a stroke when the tool has not finished "switching". So I'm going to press my button "e" with the intention to switch to Eraser tool and I will immediately draw a line, but recently, I noticed that the toolbar did not brush Eraser still at the point where I was drawing.
    So I'll check why my computer is so slow, or I'll try to be a little more patient, or both
    Thank you for your time!

  • Is there a problem of Windows malware and its license?

    This morning I got a phone call saying that there have been complaints about Microsoft Windows used to inflict viruses through e-mail, and that the problem of malicious program involves the Windows license.    This company uses software join.me and say that they have been contracted by Microsoft to resolve this issue.   They offer a package of anti-logiciel upgrade and also improve my Windows license for the cost of living of $210.  I had a hard time to understand their level of English very strongly accentuated.   They did run an analysis that says I have 1537 viruses and my computer is high risk.

    This company is legitimate?    They'll call back me on Monday, June 25.

    I had no problems with my computer.  I have Norton 360 Antivirus software both System Mechanic, who seem to do a good job of protecting my computer.

    Bob Meisterling

    E-mail address is removed from the privacy *.

    Saturday, June 23, 2012 21:45:03 + 0000, PINES (2) wrote:

    This morning I received a phone call saying that there have been complaints about Microsoft Windows used to inflict viruses
    through e-mails and malware problem involves the Windows license.    This company uses software join.me and say that they have been contracted by Microsoft to resolve this issue.   They offer a package of anti-logiciel upgrade and also improve my Windows license for the cost of living of $210.  I had a hard time to understand their level of English very strongly accentuated.   They did run an analysis that says I have 1537 viruses and my computer is high risk.

    This company is legitimate?    They'll call back me on Monday, June 25.

    They are not legitimate. It's a scam and with different names and
    phone numbers, which is becoming more and more common lately. In addition to their money get on your part to do anything of any value,
    If you leave them in your computer, which knows what losses they did are
    where confidential information they stole.

    So if you have done so, I highly recommend that you do both of the following
    immediately:

    1 do a clean reinstall of Windows.
    2. change all of your passwords, especially banks or other
    financial sites.

    I had no problems with my computer.  I have both
    Norton Antivirus 360 and software System Mechanic who seem to do a good job of protecting my computer.

    Sorry to say this, but they are all two very bad choices. Norton is
    Among the worst available security programs (in my opinion and that of)
    many others of us here) and should be replaced by a better
    program. System Mechanic is nothing more than a useless, dangerous.
    piece of junk; It should be got rid of and do not need
    replacement.

    Ken Blake, Microsoft MVP

  • Is it possible to have a common accessible file location for the main application in the sandbox and its extension app plugin

    I'm trying to launch an app on the app store for mac. The bundle of the main application and everything inside it is on sandbox.

    The main application Bundle identifier is com.xxx.core.app . The identifier for the internal Plugin Finder Extension application Bundle is com.xxx.core.app.extensions .

    Now the problem is the extension inner finder is also available in sand and trying to read a file written by the main application.

    The main application writes the file location depending on mac OS X, for example temp/var/folder/jv11743453495593/T/com.xxx.core.app

    But the internal Plugins try to read/var/folder/jv11743453495593/T/com.xxx.core.app/extensions

    Because of the different bundle identifiers, they have different containers.

    Can someone let me know how to limit the same application and its plugins to the same folder location. Does perform a work around for this problem.

    Hello yuktikapahwa,

    See the Sandbox Apple Guide under the ApplicationDirectory group container

    You must create a group that your container can access. I'm not 100% certain that this will work with extensions of Finder, but it seems the most logical place to start.

  • MacBook pro 2 logon screen starts with no arrow cursor and must be restarted

    2014 Macbook Pro screen Retina 2 13 "opening session starts with no arrow cursor and must be restarted once every five tests.  When the computer reboots, message appears asking you if it must open programs that had started to load or cancel.  It is a recent problem that does not occur two months ago.  Once restarted, everything seems to be OK.  That is what it is?

    Try the start mode by holding down the SHIFT key at startup. Secure boot is quite slow because the operating system performs some cleanup and verification tasks, so give it time. Once you're completely connected, restart normally.

  • GPS, Wifi and Bluetooth problems

    So I have an iPhone 6 running on IOS 9.3.4 and have had problems with the GPS and the strength of wifi connectivity and bluetooth for a while now.

    First of all, the GPS.  It does not work.  When I run the maps or google maps on my device and the input an address the app can give me a written plan, location, but will not show me on a map.  He'll start road to everywhere where I go and tell me to start position, for example, to the North on the road on that I am, but the arrow does not follow me and tell me when the turn or where I am.  Occasionally, he has a message of guidance down with a spinning wheel and then, after a few seconds, disappears.  I tried to reboot my device several times, I have reset the network setting, I reset all of the settings, I backed up my phone, reset it and recovered save him.  Nothing has worked.  I was at my local verizon store and received a 'new' (its definitely refurbished) phone and the problem persists on the new phone.  I reset the phone to factory setting without content, set up as a new phone and tried the cards again, thinking it might be a problem with the back to the top.  It still does not work.  I'm perplexed right now and do not know what to do/try.

    Second, wifi and bluetooth connectivity is terrible.  I can only receive a wireless signal so that in very close proximity with the router.  I tried to different houses/companies and it is the same question.  However, bluetooth is just as bad.  I use headphones wireless, and go to the gym/go for the route with them.  I used to be able to walk around the gym without my phone and have connected the headphones, but now I can't have my phone 2 feet of the appliance without the music being agitated (bad connection).  I'm really irritated that I cannot understand this point and that he can't seem to find a fixed solution online.

    If you have just updated to iOS 9.3.4, which I didn't even know still shone, so maybe it's a bug that comes with the update. However, your problems seem to follow a trend, you can not far from a source of connection and now a signal. It is perhaps because the necessary components for the Bluetooth, GPS and WiFi signal are damaged or defective. Have you dropped or spilled liquid on your iPhone recently?

  • I tried to open a bookmark and its opening in an active window, such as an image, not a separate tab or window. What is going on?

    I had problems with Firefox hanging (seems related to Flash on a particular Web site). During his last hours of troubleshooting, including on the phone with the assistance of my ISP, it was recommended I "Refresh" of Firefox. I've done it before, and I did it yesterday again. This morning I opened Firefox to my homepage (my ISP Portal), checked my email, disconnected from the email, this tab closed, open two other forums and Photobucket - three tabs open in the window - to post pictures and contribute to the discussions in the forums. Once completed, I've disconnected from forums and Photobucket, each firm separately tab, and then quit Firefox. (While in Photobucket, Flash has crashed several times... but this is not unusual with Photobucket in my experience. It's a different problem, I always deal with... but he immediately forgets...) As part of "Refresh" yesterday, I set Firefox to clear the cache and cookies and other files to quit.

    Later in the day today, I opened Firefox, portal of my ISP opened as usual and expected (my "Home page"). Sometimes, instead of close the window/tab, I just open a bookmark and it will open in the same window, but by replacing the previous window and its contents. I.e. the procedure normal functioning for me. You know, rather than having two windows open where I have to close one, I have just the bookmark opens instead of the original content of the window.

    Today (and it happened before today, but rarely), open the bookmark page as if it was a picture in the active window... otherwise said, my ISP Portal occupies about 3/4 of the window, but more on the left side of the window (not another tab or a window, but in the same window) is a thin view bookmark page. This new web page - quite foreign to the original page - has a scroll down bar, but can be made to fill the window... the previously opened web page acts as a barrier to the pleasure of the 'new' image/web page. While I can understand the right border of the "new framework" and drag it to the right, he still cannot push the 'old' web page of origin of the road... the old page reached a minimum limit and I get a split screen of two completely different websites mode contained in exactly the same active window.

    The 'new' frame has an 'x' at the top right, so I could close... but my question is, why it is opened in web page/window...how from a completely different company can two web pages from completely different organizations/companies/websites are the same active window in Firefox? I have... attached screenshots. And, oh yes, not to mention that the HOW and WHY, how can you prevent (or is the best thing to just right click and open in a new tab or window...?) Which is not always convince me... I am someone who needs to know WHY something happened that should not have happened. It drives me crazy when something strange happens and the 'solution' is to change MY behavior. (You know, like if YOU were the problem, but I need to change MY behavior Instead of correct what's wrong with YOU... When YOU could make all of the obsolete situation.)

    Thanks for everything you can suss out...

    You can check this bookmark in bookmarks (library) Manager and expand the details pane by clicking the button more.

  • have the icon to download helper with video up, I have until it clicks, dosnt download or convert a number appears next to the icon and its listed in the queue draft.exe

    I was able to load videos 26 then he stopped down. I checked the preferences, the version is 4.9.24, I can see that the video is listed next to the icon, when I drag the mouse over it.

    I support download icon, when the video is running. I click next to the icon and choose the game I want, on fast download I see it loads, but no dwhelper. dosnt download or convert a number appears next to the icon and its listed in the queue draft.exe

    There is a problem with DownloadHelper Firefox 36. They are working on a new version, you can download and help test this discussion page:

    https://groups.Google.com/Forum/#! Forum/video-video downloadhelper-5

  • My Firefox exit and gives a "not responding" message once I used Google Mail. I tried to boot into "safe" mode and the problem persists.

    I have a question where Firefox wont ' quit and give a message "not responding" after I've been using Google Mail. It works fine when I'm not using this program. I tried Safe Mode and the problem still happens when I go on Google Mail, so it is not connected with modules, extensions, etc.

    Hello

    The reset Firefox feature can solve a lot of problems in restaurant Firefox to its factory default condition while saving your vital information.

    Note: This will make you lose all the Extensions and preferences.

    • Sites Web open is not recorded in less than 25 versions of Firefox.

    To reset Firefox, perform the following steps:

    1. Go to Firefox > help > troubleshooting information.
    2. Click on the button 'Reset Firefox'.
    3. Firefox will close and reset. After Firefox is finished, it will display a window with the imported information. Click Finish.
    4. Firefox opens with all the default settings applied.

    Information can be found in the article Firefox Refresh - reset the settings and Add-ons .

    This solve your problems? Please report to us!

    Thank you.

Maybe you are looking for