DbExecute tag for data access won't work

On oc4j 1.0.2.2.1, I can update Oracle table by using dbExecute data-access tag. However, the same dbExecute tag won't make update on oc4j 9.0.2.1.
Can anyone help?
Thanks,

It turns out dbExeute tag on newer oc4j need explicit COMMIT.

Similar Messages

  • I updated my iphone and when it came time for activation it won't work and keeps telling me to try again. At the top it says "No Service" and I have my SIM card in and a good WiFi connection and have connected it through iTunes but it says I have no SIM

    I updated my iphone and when it came time for activation it won't work and keeps telling me to try again. At the top it says "No Service" and I have my SIM card in and a good WiFi connection and have connected it through iTunes but it says I have no SIM card and need to disconnect and insert my SIM. I don't understand why this keeps happening and it's been going on for a wile now. I have tried over and over again to get this iPhone to work but nothig is happening. I've even gone on the website for support (apple.com/support) but cannot find anything that will help me with this situation. Can someone please help me find a solution to this problem? I have been without a phone and do not have money to buy another one and it is crucial for me to get it fixed. Thanks.

    wesb
    What computer operating system is involved in the Premiere Elements 11 and 13 issues? Same computer or different ones? Are you installing from purchased download installation files or from purchased installation disc? Does Premiere Elements 11 work completely on this computer whereas 13 will not?
    Let us go through the typical drill so as to take nothing for granted.
    1. Does the problem exist with or without the antivirus and firewall(s) disabled? Are you working with an individual home computer or in a
    school or company network?
    2. Are you running the program as Administrator and is there any "domain" account involved?
    3. Is your video card/graphics card up to date according to the web site of the manufacturer of the card?
    4. Do you have the latest version of QuickTime installed on the computer with Premiere Elements?
    Let us start by ruling in or out any of the above, and then we can decide what next.
    Any questions or need clarification, please do not hesitate to ask.
    Thank you.
    ATR

  • Oracle version of the Microsoft Application Blocks for Data Access

    Where can I find an Oracle version of the Microsoft Application Blocks for Data Access? Is it tied to any specific version of the Oracle Client software? I currently have version 8.1.7.3 installed.

    I think that DAAB 3.0 only has support for ODBC and OLEDB, which indeed can be used for Oracle. The Nile 3.0 program has an OracleHelper file, but this one uses the Microsoft Dataprovider for Oracle RDBMS. With some minor changes you can make this version work with the ODP.NET that Oracle provides.
    The issue I'm trying to convey is, that it seems hard to use the Microsoft Application Blocks using ODP.NET. As I described earlier, the LOBs and REF Cursors are reference types that actually point to data in the Database. This means, that the Connection to the database must be open to get to the Data.
    In the DataHelper, you open the Connection and get the data you need. The DataHelper should then clean up and close the Connection. Then you pass the data to the caller. However, since we're dealing with Reference types, a closed connection means no data.
    So I guess the only way to make this easy to use and not having to assume the caller/developer will open and close connections, you must copy the data in an instance of a DataSet, before you close the connection and then pass the Dataset back to the caller.
    I wonder if people have delt with this issue and what their solution looks like.
    thnx

  • Design patterns  for data access

    . What design patterns can be used for data access to ensure that only a minimum amount of data is maintained in session

    . What design patterns can be used for data access to
    ensure that only a minimum amount of data is
    maintained in sessionThat's not a design pattern, that's business logic.
    Your application has to determine what "minimum" means.
    Martin Fowler has lots of patterns for data access in his "Patterns of Enterprise Application Architecture". Check them out.

  • I have an Airport Express and the pass code I used some time ago for my IPad won't work for my new IPhone 5S?

    I have an Airport Express and the pass code I used some time ago for my IPad won't work for my new IPhone 5S?

    If you are sure that you are entering the correct password, then this sounds like an iPhone issue, so your best bet will be to post in the iPhone Support Community so that the experts over there can help.
    Using iPhone
    The best that we can do here is suggest that you start with the iOS support document Troubleshooting Wi-Fi Networks and Connections.
    Resetting the iPhone took care of an issue like this with my wife's iPhone.
    http://support.apple.com/kb/TS1398

  • Does it make sense to create a worker role for data access to DocumentDB?

    Hi,
    I'm building an ASP.NET MVC app that will run on Azure. I'm using DocumentDB as its back-end database.
    Sometimes, I return multiple data sets from different collections that need to be "reorganized". I handle this using LINQ in my application code. Does it make sense then to put all my data access and manipulation code into a worker role that I
    can call from my web application that will run as a web role?
    The reason why I'm thinking this may be beneficial is that I could scale up my worker role to increase its data manipulation capacity.
    On the other hand, in most cases, my web role has to wait for a response from the DAL before it can do anything -- meaning, I cannot handle data access asynchronously -- I'm wondering if worker role approach makes any sense. I think mostly, worker roles
    are used for operations that can run asynchronously.
    I'd appreciate your feedback on this.
    Thanks, Sam

    Hi,
    Worker role applications are background processing applications like Windows processes which run in the background. Applications hosted within worker roles can run asynchronous, we usually use worker role to do some long-running or perpetual tasks, and
    use scale function to load balance the tasks. Based on your description, it seems that worker role is a good choice for you, please try it, if you have further issues, welcome to create new threads in our forum.
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Struggling on h:inputText tag for date type property

    I am struggling to display a simple form which is attached to a bean having a Date type property.
    I get the following exception each time I try to access the form, even it does not display as a blank form for the first time access.
    Exception:
    [#|2008-01-04T14:39:13.500+0530|SEVERE|sun-appserver-pe9.0|javax.enterprise.system.container.web|_ThreadID=12;_ThreadName=httpWorkerThread-3031-1;_RequestID=676ba2b1-9b5e-4a96-adb5-b1a792507b40;|StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception
    javax.faces.FacesException: Error performing conversion of value ' of type class java.lang.String to type class java.util.Date for managed bean userBean.
    javax.servlet.ServletException: Error performing conversion of value ' of type class java.lang.String to type class java.util.Date for managed bean userBean.The JSP page contains the following tag for the inputText
                <h:inputText value="#{userBean.dob}" id="dob" required="true">
                    <f:convertDateTime pattern="MM/dd/yyyy" />
                </h:inputText>
                <h:message for="dob" />I want to display a blank form with all the text fields blank.
    Any help will be much appreciated.

    You should be able to do
       <h:inputText value="#{bean.lastDate}"/>Where 'bean' is the managed bean name containing
    the method getLastDate().
    When the view is rendered, the getter (getLastDate())
    will be called to display whatever value is returned.

  • PIN unlock for data access on blackberry

    I have got a blacberry pearl 8100 from TIM,Italy. now I want to use it in India.The phone is unlocked in terms of voice and sms but I cannot use data/internet. My service provider tells me that the PIN is locked with TIM and unless they release this I cannot use the blackbeery services.
    Can anybody help me to solve this problem???
    taposhkb

    I am having the same issue with an 8830 from Verizon. Voice calls are working great, but BB data plan is not working.
    I contacted Global Support, they told me that Verizon locks the PIN of their blackberries (different from phone locking), but they can't release it because Verizon just doesn't do that. She did not make it clear whether it is a software or hardware lock. "Data Lock" seems to be a good term for this to differentiate from "Phone Lock".
    But she told me that she knows for a fact that if I were to switch providers and go with Cricket, I can take it to a Cricket store and they know how to unlock the PIN!! Because she's done this herself.
    Just to make it clear, this is the situation where the phone is already unlocked, but another GSM provider is unable to activate the data plan because of a PIN lock somewhat tied physically to the phone (i.e. calling your provider won't help because they will tell you that your PIN has already been released from their and RIM's databases).
    If anyone manages to resolve this issue, please do post the procedure.

  • Gooseneck Adapter for dock charger won't work

    I bought the Apple Shuffle car charger that plugs into the cigarette lighter socket and Shuffle works great. But since I have a standard, when I shift, the Shuffle is too close to the gear shift. So I bought the gooseneck adapter and Shuffle won't work. Took gooseneck back to store, thinking it was defective, but 2nd one doesn't work either. Any suggestions??
      Windows XP  

    Hi
    You have a couple of options as I see it please click on the web link given below might resolve your issue.
    Testing and Using the AC Power Adapter
    If this does not work please contact HP technical support and get the New Ac Adapter that will fix your issue.
    Let us know how it goes!
    *Although I am an HP employee, I am speaking for myself and not for HP.
    ****Click the White Kudos star to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards,
    Manjunath
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • Since my iPhone update to Ver 6.1.3 a few days ago, I have been billed £0.65 daily for data access in the middle of the night. Why?

    On checking my Orange Phone Usage, I find that most data access is free under the terms of my Pay As You go account, but daily there is a data access bill of £0.65 in the middle of the night when I am asleep. This has only been happening for the past few days since the iPhone software updated to Ver 6.1.3.

    contact whomever you have you cell plan with and have them go over the charges.

  • Function Module for Date/ Time difference in Working Days

    Hi all,
    Are there any function modules which will calculate the difference between a date AND time, but in working days?
    I can use the FIMA_DAYS_BETWEEN_TWO_DATES_2 FM for the dates, but I need to include times in this as well.
    This is for situations where the 'starting date' is a non-working day, and the 'end date' is a working day.  In this situation I need to take all the hours and minutes into account, which happened on the working day.  To give an example -
    Start date:  04.07.2010 (Sunday - Non working day)
    Start time:  21:12:36
    End date:  05.07.2010 (Monday - Working day)
    End time:  04:47:24
    I realise there is a Time option in this function module, but when I test it, it doesn't seem to be returning the desired results (returns 0 for days and time).  I am using '5' as the I_STGMETH and 'GB' as the I_SKALID. 
    I need a calcuation which will return the time, post midnight on the working day - in this example, 4 hours, 47 minutes (seconds are optional!).
    Can anyone help? - can I still use FIMA_DAYS_BETWEEN_TWO_DATES_2 but with different parameters?
    Thanks
    Mischa
    Edited by: Mischa Gulseven on Jul 20, 2010 10:40 AM

    Hi,
    Thanks but this FM does not seem to account for working days.
    For example, if I use:
    DATE1                           04.07.2010  (non working day)
    TIME1                           04:00:00
    DATE2                           05.07.2010   (working day)
    TIME2                           21:00:00
    It will give the following results -
    DATEDIFF                                                      1
    TIMEDIFF                                                     17
    EARLIEST                        1
    I don't want to account for the non-working day so the result I actually want would be to calculate from midnight on 05.07 to 21:00 on 05.07 which should be 21 hours.
    I suspect I probably need to include the STGMETH and the factory calendar somewhere in the FM?
    Does such a FM exist, or could anyone help me with some ABAP for this?
    thanks
    Mischa

  • Help!!! DSL for my airport won't work

    Here is my problem, I got an airport a while ago, and got it to work with my printer but getting it to work with the internet has been impossible because our old PC does not have wireless, and when I hook up a splitter to the Ethernet cable my airport blinks yellow, gets pouty an won't work. So...
    Question 1: Do I need a separate DSL router(not sure if that is the right term, but its the little black box that you hook the DSL cable to and the ethernet cable to the computer) for each DSL out in my house.
    Question 2: What has been a good router for you (apple forum super-hero's ) & that will be compatible with my airport and macbook.
    Thanks in advance!
    -Sam

    Hello guess_sam. Welcome to the Apple Discussions!
    Since you have a requirement to support both wired and wireless devices on your network, it would be better to replace your AirPort Express Base Station (AX) with either an AirPort Extreme Base Station (AEBS) or an equivalent model from another manufacturer, like Belkin, D-Link, or Linksys to name a few.

  • HT1338 Office for Mac 2011 won't work with with System 10.8.4

    My Office for Mac 2011 (Excel) won't work on my Power Book with System 10.8.4
    Tried to redownload the software and restart - still won't work.
    Need help

    http://www.microsoft.com/mac/downloads?pid=Mactopia_Office2011&fid=877700ED-3D03 -4D46-A77B-5063D8F7D2E3#viewer

  • IOS 8 cellular data settings won't work!!!

    I'm using a 16GB iPhone 5s iOS 8. Whenever go to the "Cellular" settings on the main settings page and turn ON cellular Data won't work!!

    Hi hourdad,
    If you are having issues with your cellular data connection after upgrading your iPhone to iOS 8, you may find the troubleshooting steps outlined in the following article helpful:
    iPhone: Troubleshooting a cellular data connection
    Regards,
    - Brenden

  • Wake for network access won't wake

    I have my MacPro connected wirelessly to my MacBook Pro and both are set to "Wake for network access" but neither of them wakes the other up when trying to connect to each other.
    Any ideas?
    Thanks guys!

    Check the Log Me in Client, it has an option for Wake for Network access - which enforces the option.
    I had the same issue and wanted to kill someone

Maybe you are looking for