Cfquery Update Syntax Suddenly bad???

The following code has been working for 2yrs or so;
And suddenly I get the following error;
Error Executing Database Query.
[Macromedia][SequeLink JDBC Driver][ODBC
Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in
UPDATE statement.
The error occurred in
C:\Inetpub\wwwroot\seaboard\CartweaverPO.cfm: line 61
Called from C:\Inetpub\wwwroot\seaboard\ProcessOrder.cfm:
line 36
Called from C:\Inetpub\wwwroot\seaboard\CartweaverPO.cfm:
line 61
Called from C:\Inetpub\wwwroot\seaboard\ProcessOrder.cfm:
line 36
59 : ,howUheard='#form.howUheard#'
60 : ,'mailCheck='#form.mailCheck#'
61 : WHERE CustomerID=#form.CustomerID#;
62 : </cfquery>
63 : </cfif>
SQL UPDATE Customers SET CompanyName = 'The Visual Spectrum'
,FirstName = 'Henry' ,LastName = 'Silvia' ,Address1 = '4432
Commercial Way' ,Address2 = '' ,City = 'Spring Hill' ,StateOrProv =
'FL' ,Zip = '34608' ,Country = 'United States' ,ShpAddress1 =
'14567 Hoobi Doobi Lane' ,ShpCity = 'Brooksville' ,ShpStateOrProv =
'FL' ,ShpZip = '34606' ,ShpCountry = 'United States' ,PhoneNumber =
'352-597-4395' ,FaxNumber = '597-5991' ,EmailAddress =
'[email protected]' ,Notes = '' ,CCardType = 'v' ,CCNumber =
'411111111111' ,ExprMonth = '01' ,ExprYr = '2008' ,permission =
'no' ,poNumber='' ,howUheard='Customer did not answer'
,'mailCheck='no' WHERE CustomerID=2201;
Every line has a comma except the last. The WHERE does
referrence a ID field (Number, MSAccess) and yet I get Syntax error
with no clue what is syntactically wrong. Any clues?

WOW, Eagle-Eye-Phil! Thanks man! I looked at that code 'til I
was cross-eyed and never saw that extra quote. I wonder where that
came from??? Well, It works now, so thanks.

Similar Messages

  • /sbin/mkinitcpio: 54: Syntax error: Bad substitution

    When I try upgrading my kernel I get the following output, ending with a Bad Substitution error:
    checking package integrity... done.
    loading package data... done.
    checking for file conflicts... done.
    upgrading kernel26... done.
    >>>
    >>> If you use the LILO bootloader, you should run 'lilo' before rebooting.
    >>>
    >>> Updating module dependencies. Please wait ...
    >>> MKINITCPIO SETUP
    >>> ----------------
    >>> If you use LVM2, Encrypted root or software RAID,
    >>> Ensure you enable support in /etc/mkinitcpio.conf .
    >>> More information about mkinitcpio setup can be found here:
    >>> http://wiki.archlinux.org/index.php/Mkinitcpio
    >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    /sbin/mkinitcpio: 54: Syntax error: Bad substitution
    I tried reinstalling mkinitcpio, but that does not seem to have any effect. What could be the problem here?

    changing the shebang to #!/bin/bash instead of #!/bin/sh in mkinitcpio seems to get it working again.
    but now I get the following:
    >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    ==> Building image "default"
    ==> Running command: /sbin/mkinitcpio -k 2.6.18-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    :: Begin build
    :: Parsing hook [base]
    :: Parsing hook [udev]
    :: Parsing hook [autodetect]
    :: Parsing hook [ide]
    :: Parsing hook [scsi]
    :: Parsing hook [sata]
    :: Parsing hook [filesystems]
    :: Generating module dependencies
    :: Generating image '/boot/kernel26.img'...usage: gzip [-cdfhlLnNtvV19] [-S suffix] [file ...]
    FAILED
    ==> FAIL
    ==> Building image "fallback"
    ==> Running command: /sbin/mkinitcpio -k 2.6.18-ARCH -c /etc/mkinitcpio.d/kernel26-fallback.conf -g /boot/kernel26-fallback.img
    :: Begin build
    :: Parsing hook [base]
    :: Parsing hook [udev]
    :: Parsing hook [ide]
    :: Parsing hook [scsi]
    :: Parsing hook [sata]
    :: Parsing hook [usbinput]
    :: Parsing hook [raid]
    :: Parsing hook [filesystems]
    :: Generating module dependencies
    :: Generating image '/boot/kernel26-fallback.img'...usage: gzip [-cdfhlLnNtvV19] [-S suffix] [file ...]
    FAILED
    ==> FAIL
    something is screwy here.

  • My 13" early 2011 macbook pro is having trouble connecting back to internet after going to sleep. before updating to EFI 2.7 it was perfect now after updating its gone bad

    My 13" early 2011 macbook pro is having trouble connecting back to internet after going to sleep. before updating to EFI 2.7 it was perfect now after updating its gone bad.

    Same issue here too.  I will try reinstalling the firmware update.  This has happend to me twice.  The only way to correct the issue was to reboot.
    Thanks!

  • XML DML XQuery Update syntax

    Hi everybody,
    Certainly my question will appear strange and even stupid , but I want to be sure to use the best syntax and also to be confirmed about some points.
    In the document Oracle XML DB Best practices, we can find a lot of statements for modifying XML documents. In page 11 and 12 we have statements with and without XQuery syntax. What is exactly the best way ? Using insertchildxml, updatexml or the update statement with the XMLQuery clause ?
    Why we use copy in these statement, but the keyword copy is not used in a XQuery expression.
    I think copy is not specific to Oracle, is it used in XQuery language ?
    In page 15, the SQL statement to modify XML document uses deletexml, not a XQuery update syntax.
    I'm using Oracle 11G.
    Thanks in advance for your explanations

    user4423142 wrote:
    In the document Oracle XML DB Best practices, we can find a lot of statements for modifying XML documents. In page 11 and 12 we have statements with and without XQuery syntax. What is exactly the best way ? Using insertchildxml, updatexml or the update statement with the XMLQuery clause ?The recommended way is closely tied to the version you're using, which you didn't give.
    "11g" is not a version, it's a product name.
    You can find the version by running :
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE     11.2.0.3.0     Production
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    XQuery Update on Oracle in available in the latest version only : 11.2.0.3.
    If you're using this version, Oracle recommends you start using XQuery Update.
    Why we use copy in these statement, but the keyword copy is not used in a XQuery expression.
    I think copy is not specific to Oracle, is it used in XQuery language ?<tt>copy</tt> is specific to the XQuery Update Facility (XQUF) extension of the XQuery 1.0 language.
    The XQUF was primarily intended to work with native XML databases where it's OK to directly invoke update primitives (insert, delete, replace etc.) to modify database content.
    On Oracle, it's not possible and the current implementation only supports XQUF through the "transform" operation (copy/modify syntax) where a copy of the original document/fragment is modified and written back to the db.
    However, XQuery rewrite and related optimizations may occur so that piecewise updates actually take place.

  • UPDATE Syntax Error

    Hi,
    I keep getting a java update syntax error and can't for the life of me figure out where it is. Help?
                    criteria = "UPDATE Customer SET CustomerID = '" + txtCustomerID.getText() + "', " +
                            "CompanyName = '" + txtCompanyName.getText() + "', BusinessAddress = '" + txtBusinessAddress.getText() +
                            "', City = '" + txtCity.getText() + "', State = '" + txtState.getText() + "', ZIP = '" + txtZIP.getText() +
                            "', ContactName = '" + txtContactName.getText() + "', CustomerSince = #" + myDate + "#, ContactPhone = '" +
                            txtContactPhone.getText() + "', FaxNumber = '" + txtFax.getText() + "', OtherPhone = '" + txtAltPhone.getText() +
                            "', EmailAddress = '" + txtEmail.getText() + "', Note = '" + txtNotes.getText() + "' WHERE CustomerID = '" +
                            txtCustomerID.getText() + "'";And the resulting SQL query is:
    UPDATE Customer SET CustomerID = '000-0002', CompanyName = 'Stink Inc.', BusinessAddress= '103 N University St.', City = 'West Lafayette', State = 'IN', ZIP = '47906', ContactName = 'Ryan Hedlund', CustomerSince = #2005-12-25#, ContactPhone = '317-545-8766', FaxNumber = '3178789964', OtherPhone = '3178446555', EmailAddress = '[email protected]', Note = 'Hedlund is a smelly smelly man.' WHERE CustomerID = '000-0002'

    Nevermind, saw I was using "Note" instead of "Notes" like I shoulda been embarrassed

  • I was trying to installed new ios update and suddenly my WIFI connection got desconnect. now I am trying to restore my Ipad2 but getting error saying "the Ipad could not restored, An unknown error accured (3194).

    I was trying to installed new ios update and suddenly my WIFI connection got desconnect. now I am trying to restore my Ipad2 but getting error saying "the Ipad could not restored, An unknown error accured (3194)". so please help me out to resolve the same.

    When I restart my iPad the connect to iTunes comes up and stays on until it shuts down again, I have read a report from Apple support suggesting I reinstall iTunes so I might try that again and also your suggestion which i shall also try, but thanks again - rg1547

  • ESS Leave Custom fields, how to update them using BADIs

    Hi There,
    We are trying to use custom fields provided in ESS leave application, and we want to update them using BADI. As these information is not available on the screen while requesting leave request.
    I did look at PT_ABS_REQ BADI and seems i can use Post_Vio_BLOP .. but its unable to update table PTREQ_ATTABSDATA .
    Can you please suggest what can be best approach here.
    Thanks a lot.
    Rgds,

    Sudhir wrote:>
    > I did look at PT_ABS_REQ BADI and seems i can use Post_Vio_BLOP .. but its unable to update table PTREQ_ATTABSDATA .
    Did you look at using the Implict Enhancement Options available at the beginning & end of the POST_VIA_BLOP Method? Or even better, enhance the Class CL_PT_ARQ_REQ_EXIT & replace the IF_EX_PT_ABS_REQ~POST_VIA_BLOP Method with an Overwrite Exit?
    ~Suresh

  • Syntax error: bad digit in number

    I made a panel for ID cs5, the panel and buttons work fine.
    But in the panel is one button with a script, if i click this button i get an syntax error, bad digit in number.
    The script works fine on its own but not from the panel.
    Any help is very much appreciated
    thnx
    Harald

    Try to check this:
    1) the  script you insert in the button must not contain  any kind of  comment ( //  or /* */    ) ( configurator doesn'accept any comment inside the button)
    2) each statement is separated by  a semicolon  ( ; )
    the syntax must be perfect
    Anyway if you have difficult to find the problem you can link the button to the
    Yourscript .jsx  file

  • HT1420 i tried updating the software on my i pod touch, and it looked like it was working cause it said "verifying update". but suddenly the screen went black and when i tried to turn it back on, it only had a picture of a usb chord pointing to the itunes

    i need help. i tried updating the software on my ipod touch, and it looked like it was working fine, because it said "verifying update", but suddenly the screen went black and when i tried to turn it back on, it only had a picture of a usb chord pointing to the itunes icon. what do i do?

    Your iPod has dropped into Recovery mode. You'll need to restore it via iTunes on your computer.
    http://support.apple.com/kb/ht1808
    Regards.

  • 10.6.8 update and sudden motion sensor

    I have MBP 8,1, 2011 base model i5. Since i updated to 10.6.8 it seems like sudden motion sensor got a lot more sensitive. Never seen it work before, now if i lift the mbp from desk even i can hear the hdd clicking home. I have disabled the sensor and it stops even i move the computer around very fast. So it is not just the drive doing, sensor is triggering that.
    I was wondering if anyone knows if sensivity of this sensor changed on last mac os update? or if anyone else noticed it too?
    Thx
    Ozzy

    Hi Ozzy,
    I have not noticed any difference on my MBP.
    You can try an SMC Reset, which can resolve SMS issues: http://support.apple.com/kb/HT3964

  • Problem with CFQUERY update statement

    I'm having trouble getting an SQL Update statement to work
    correctly and I'm scratching my head as to why.
    The output i get is the following:
    Syntax error in UPDATE statement
    SQLSTATE 42000
    SQL UPDATE companies SET CompanyName = 'Insight Data Ltd',
    Address1 = '5 Boulevard', Address2 = '', Address3 = '', City =
    'Weston-super-Mare', County = 'North Somerset', Postcode =
    'BS231NN', OfficeBranch = 'BR', contacttitle1 = 'Mr', contactname1
    = 'Andrew', contactsurname1 = 'Scott', contactposition1 = 'Owner',
    mail1 = 'yes', TelNumber = '01934 123456', TPS = 'no', FaxNumber =
    '',FPS = 'no',MobileNumber = '',MPS = 'no',email =
    '[email protected]', EPS = 'no', WebAddress = '
    http://www.insightdata.co.uk',
    contacttitle2 = 'Mr', contactname2 = 'David', contactsurname2 =
    'Lewis', contactposition2 = 'Office Manager', mail2 = 'no',
    contacttitle3 = 'Mr', contactname3 = '', contactsurname3 = '',
    contactposition3 = 'Owner', mail3 = 'no', contacttitle4 = 'Mr',
    contactname4 = '', contactsurname4 = '', contactposition4 =
    'Owner', mail4 = 'no', wPVCUfab = 'yes', wALUinst = 'yes', WHERE
    companyid = 33415
    VENDORERRORCODE -3503
    DATASOURCE idv6
    I've checked that all the data fields are in the correct
    format, and I can't see why I am getting a syntax error. Any help
    on this would be appriciated

    Agreed, but it looks like you already have the sql. Take the
    query from the error message above and run it in your database.
    Though I did notice have an extra comma between the last column and
    there WHERE clause.
    wALUinst = 'yes' , WHERE companyid = 33415
    For the optional columns, put the commas first to prevent
    errors due to trailing or too many commas
    UPDATE Table
    SET Column1 = 'value'
    <cfif SomeValueExists>, Column2 = 'other value'
    </cfif>
    WHERE ID = 123
    Two other things to consider: use cfqueryparam and consider
    normalizing your table. Column names like Contact1, Contact2,
    Contact3 ... are usually a sign its time to normalize.

  • Oracle UPDATE syntax with JOIN and WHERE clause

    I need to update one of my tables, and can't seem to get the syntax right. I've tried a 4 different approaches, but not having any luck.  Any help would be greatly appreciated.
    Attempt #1: Error: SQL command not properly ended
    UPDATE TESTDTA.F4941
    SET TESTDTA.F4941.RSDSTN=TESTDTA.F4981.FHRTDQ,TESTDTA.F4941.RSUMD1=TESTDTA.F4981.FHUOM
    FROM TESTDTA.F4941
    INNER JOIN TESTDTA.F4981
    ON TESTDTA.F4941.RSSHPN  = TESTDTA.F4981.FHSHPN
    WHERE TESTDTA.F4941.RSSHPN = 647143
    AND TESTDTA.F4941.RSDSTN = 0
    AND TESTDTA.F4941.RSADDJ  > 110365
    AND TESTDTA.F4981.FHCGC1  = 'DIS';
    Attempt #2: Error report: SQL Error: ORA-00904: "TESTDTA"."F4981"."FHUOM": invalid identifier 00904. 00000 - "%s: invalid identifier"
    UPDATE (SELECT TESTDTA.F4941
    FROM TESTDTA.F4941
    INNER JOIN TESTDTA.F4981
    ON TESTDTA.F4941.RSSHPN  = TESTDTA.F4981.FHSHPN
    WHERE TESTDTA.F4941.RSSHPN = 647143
    AND TESTDTA.F4941.RSDSTN = 0
    AND TESTDTA.F4941.RSADDJ  > 110365
    AND TESTDTA.F4981.FHCGC1  = 'DIS')
    SET TESTDTA.F4941.RSDSTN=TESTDTA.F4981.FHRTDQ,TESTDTA.F4941.RSUMD1=TESTDTA.F4981.FHUOM
    Attempt #3: Error report: SQL Error: ORA-00904: "TESTDTA"."F4941": invalid identifier 00904. 00000 - "%s: invalid identifier"
    UPDATE (SELECT *
    FROM TESTDTA.F4941
    INNER JOIN TESTDTA.F4981
    ON TESTDTA.F4941.RSSHPN  = TESTDTA.F4981.FHSHPN
    WHERE TESTDTA.F4941.RSSHPN = 647143
    AND TESTDTA.F4941.RSDSTN = 0
    AND TESTDTA.F4941.RSADDJ  > 110365
    AND TESTDTA.F4981.FHCGC1  = 'DIS')
    SET TESTDTA.F4941.RSDSTN=TESTDTA.F4981.FHRTDQ,TESTDTA.F4941.RSUMD1=TESTDTA.F4981.FHUOM;
    Attempt #4: Error: ORA-00925: missing INTO keyword 00925. 00000 - "missing INTO keyword"
    MERGE TESTDTA.F4941
    USING TESTDTA.F4981
    ON (TESTDTA.F4941.RSSHPN  = TESTDTA.F4981.FHSHPN
    AND TESTDTA.F4941.RSSHPN = 647143
    AND TESTDTA.F4941.RSDSTN = 0
    AND TESTDTA.F4941.RSADDJ  > 110365
    AND TESTDTA.F4981.FHCGC1  = 'DIS'
    WHEN MATCHED THEN
    UPDATE SET TESTDTA.F4941.RSDSTN=TESTDTA.F4981.FHRTDQ
       ,TESTDTA.F4941.RSUMD1=TESTDTA.F4981.FHUOM;

    thank you for the attempt, but I get this error trying your method...
    Error report:
    SQL Error: ORA-01779: cannot modify a column which maps to a non key-preserved table
    01779. 00000 -  "cannot modify a column which maps to a non key-preserved table"
    *Cause:    An attempt was made to insert or update columns of a join view which
               map to a non-key-preserved table.
    *Action:   Modify the underlying base tables directly.
    as for the background of what I'm trying to...
    I have 2 tables, one that has shipments with no miles (F4941 / Routing Steps), and another that does have miles (F4981 / Freight Audit History).
    I want to update the miles & UnitOfMeasure columns for all shipments in the F4941 that currently have 0 miles with the miles found in the F4981 which are connected by Shipment number.  Here's my same script, with simpler naming.
    UPDATE RoutingSteps
    SET RoutingSteps.Miles=FreightAuditHistory.Miles,RoutingSteps.UnitOfMeasure=FreightAuditHistory.UnitOfMeasure
    FROM RoutingSteps
    INNER JOIN FreightAuditHistory
    ON RoutingSteps.ShipmentNumber  = FreightAuditHistory.ShipmentNumber
    WHERE RoutingSteps.ShipmentNumber = 647143
    AND RoutingSteps.Miles = 0
    AND RoutingSteps.ShipmentDate  > 110365
    AND FreightAuditHistory.Category  = 'DIS';
    hope this helps visualize my intent

  • Battery life suddenly bad while idle at 80%

    Hey guys,
    I have a macbook pro that I got about a month or two ago and the battery life has been great until about two days ago, I used to see a full charge carry for 5-6 hours now it's 2 hours if i'm lucky, as far as I know the only thing that has changed is installing apple updates which I doubt would cause my battery life to tank suddenly. My running conditions haven't changed, i've usually got the backlight low with dim keyboard light, wi-fi on and not running anything intensive as you can see below, just a code editor and some communication programs.
    here's sample output from running top in a terminal
    Processes: 87 total, 5 running, 82 sleeping, 472 threads                                                                                                                                                                            12:20:54
    Load Avg: 1.24, 1.21, 1.13  CPU usage: 7.79% user, 5.19% sys, 87.1% idle  SharedLibs: 7652K resident, 8160K data, 0B linkedit. MemRegions: 13809 total, 1109M resident, 32M private, 364M shared.
    PhysMem: 894M wired, 1318M active, 243M inactive, 2455M used, 1635M free. VM: 193G vsize, 1040M framework vsize, 191238(0) pageins, 0(0) pageouts. Networks: packets: 35325/18M in, 32604/6758K out.
    Disks: 80275/1782M read, 22422/744M written.
    Here are the specs on the laptop
    Hardware Overview:
      Model Name:          MacBook Pro
      Model Identifier:          MacBookPro8,2
      Processor Name:          Intel Core i7
      Processor Speed:          2 GHz
      Number of Processors:          1
      Total Number of Cores:          4
      L2 Cache (per Core):          256 KB
      L3 Cache:          6 MB
      Memory:          4 GB
      Boot ROM Version:          MBP81.0047.B04
      SMC Version (system):          1.69f1
      Serial Number (system):          C0***V
      Hardware UUID:          0DCE12E1-6114-53C0-B618-CB75D451C706
      Sudden Motion Sensor:
      State:          Enabled
    Does anyone have any insight or tools I can use to diagnose this further?
    Thanks!

    I tried that last night to no avail, but I found the answer. The dock had been running at 100% after the upgrade (don't know why it didn't show up in top, but showed up in activity monitor) so I followed this thread ( https://discussions.apple.com/thread/3138432?start=0&tstart=0 ) and now I'm back to expected battery life

  • I was able to see app updates in my appstore but now there are no updates available suddenly what is the reason?

    I was able to see app updates in my appstore but now suddenly there are no updates available what is the reason?

    Hello, I have the same problem but 2 days ago I switched from an iPhone 4 to a 5 so I don't know if is a general issue or related from my iPhone upgrade.
    I know I have some apps to update but EVERYWHERE (iPad store, iPhone and iMac) it says "no app updates available".
    Please reply me if you got any fix!

  • Rezound OTA update, good or bad?

    Still no Rezound forum, huh?
    Well, I noticed a decreased in overall performance in my device after the update, but it was still very usable and a great device, but disappointed in the decrease in download speeds, battery life and STILL seeing the issue with my time switching back and forth between Pacific and Mountain time...I believe the time zones will sync before that is fixed lol.
    Anyway, so I was sent a replacement and activated it last night and noticed immediately it had the previous software on it, which is good, because the battery life and speeds seem to be where they once were after about 4 hours of use...but there is an issue with the ear piece, the speaker seems to be blown (static and muffling) so I had to pack it up and send it back for another. I activated the phone with the new software afterwards (within minutes and in the same area) and notice the downloads speeds were back down to about 2-4 down and topped out at 1 up (the replacement, both exceeded 10) I am in Phoenix,AZ where 4G is all over.
    I am hoping the next replacement has not been flashed w/ the new update so I can ignore it if it happens to come up. I know its recommended by VZW that all phones have the latest software, but after seeing first hand what the update does to the speed and battery, is it really worth it? Could it be that my device was bad all along despite it working perfectly prior to the update? I did perform factory resets and kept 3rd party apps very minimal but no difference. Is this "Verizon Location Agent" really to blame for the battery life? I fear receiving the next replacement and it working fine, then the update comes along and ruins the phone again...I doubt that is enough ground to request another replacement.
    What to do, what to do!

    I've been lucky with my TBolt and Rezound. I haven't had all of the problems others have except for the network problem with the Bolt. Since I still have it, I've been tempted to root it just to experiment, but the Rezound has been so great that I just haven't been in a hurry to do it. My speeds with the Rezound after the update are about the same as before. They go up and down, depending on when I check it and what server I connect to. I'd love to get the 20's and 30's some report, but my best is about 16Mbps and this morning I'm getting 4 to 7Mbps.
    I don't usually see that much difference in how fast it connects to web sites, maybe because I don't check the speed when I'm surfing, if it connects I'm happy.  It also seems to slow down when I tether to my laptop, but I seldom check it then either. Having a stable connection that doesn't drop out and need to be restarted every 5 to 10 minutes is more important to me than what the speed is.  Even at it's slowest, it's still faster than the non-existent WiFi we have at work.
    Hope your next one works better. If it doesn't keep bugging them till you get one that does.

Maybe you are looking for

  • UPK 11.0.0 integrate with EBS 12.1.3

    Hi, I installed UPK 11.0.0 server and client. I have also imported UPK EBS 12.1.3 contents provided from oracle edelivery. Now I need to integrate EBS help menu with UPK. My first step is to just see if integration works or not. document says : " Mod

  • HT1657 I rented a movie but the picture is unviewable? What do I do?

    I've been renting moview from iTunes for years now, but I just tried renting 47 Ronin, but when clicking to play it show many distorted horizontal lines, hence the movie is unviewable. Audio works fine though. I took a screen shot of it, but for some

  • Problem integrating Oracle 9i, Weblogic 7.0, and MDB

    (REFORMATTED??) All: I would really appreciate an answer to this question. Background: - We are using Oracle 9i and Weblogic 7 - I have an MDB that receives a message, then in the onMessage (Message) method performs a findByPrimaryKey(String). Proble

  • Firefox wont update it says i have firefox running in back ground then stops but i do not

    the new updates for firefox wont install on my pc they try each time put it stops and says that i have to close firefox to install , it says that i am running firefox on my pc but i am not .. i all other versions went in ok but you newest one wont ho

  • Unable to "See" all photos in newly sent Photocast

    On Wed. evening (it is now Friday morning), my son sent me a Photocast with 16 photos. Then yesterday morning he added 15 more. Even though the syncing symbol spins around (I've prompted it many times), the new 15 did not come through. I just had the