OCIBindArrayOfStruct not called, but array insert successed

according to Oracle document, the OCIBindArrayOfStruct must be called for array insert, but I observed a stranger behavior that I bind the address of array through OCIBindByPos and didn't call OCIBindArrayOfStruct, and the call OCIStmtExecute, give iters the number of element of array. all data in array are insert succeeded, so I am wonder what will happen if OCIBindArrayOfStruct is not called? and why even the function is not called, array insert still succeeded? It seems OCI's behavior is same as OCIBindArrayOfStruct if iters great than 1.@
#include "stdafx.h"
#include "oci.h"
void PrintError(OCIError *pError);
int _tmain(int argc, _TCHAR* argv[])
  char szName[20] = {0};
  char szUID[20] = {0};
  char szPWD[20] = {0};
  OCIEnv *pEnv = NULL;
  OCIError *pErr = NULL;
  OCIServer *pServer = NULL;
  OCISvcCtx *pSvcCtx = NULL;
  OCISession *pSession = NULL;
  OCIInitialize((ub4)OCI_THREADED | OCI_OBJECT, 0, 0, 0, NULL);
  ::OCIEnvInit(&pEnv, OCI_DEFAULT, 0, NULL);
  sword wStatus = ::OCIHandleAlloc(pEnv, (void**)&pErr, OCI_HTYPE_ERROR, 0, NULL);
  if (wStatus == OCI_ERROR)
  std::cout << "Failed allocate Error handle";
  return 0;
  wStatus = ::OCIHandleAlloc(pEnv, (void**)&pServer, OCI_HTYPE_SERVER, 0, NULL);
  if (wStatus == OCI_ERROR)
  std::cout << "Failed allocate Server handle.";
  return 0;
  wStatus = ::OCIHandleAlloc(pEnv, (void**)&pSvcCtx, OCI_HTYPE_SVCCTX, 0, NULL);
  if (wStatus == OCI_ERROR)
  std::cout << "Failed allocate service context handle.";
  return 0;
  std::cout << "Please enter the TNS name:";
  std::cin >> szName;
  std::cout << "Please enter user name:";
  std::cin >> szUID;
  std::cout << "Please enter password:";
  std::cin >> szPWD;
  wStatus = ::OCIServerAttach(pServer, pErr, (OraText*)szName, strlen(szName), OCI_DEFAULT);
  if (wStatus == OCI_ERROR)
  std::cout << "Unable to attach to a server.";
  return 0;
  OCIAttrSet(pSvcCtx, OCI_HTYPE_SVCCTX, pServer, 0, OCI_ATTR_SERVER, pErr);
  wStatus = ::OCIHandleAlloc(pEnv, (void**)&pSession, OCI_HTYPE_SESSION, 0, NULL);
  if (wStatus == OCI_ERROR)
  std::cout << "Unable to allocate a session handle.";
  return 0;
  OCIAttrSet(pSession, OCI_HTYPE_SESSION, (void*)szUID, strlen(szUID), OCI_ATTR_USERNAME, pErr);
  OCIAttrSet(pSession, OCI_HTYPE_SESSION, (void*)szPWD, strlen(szPWD), OCI_ATTR_PASSWORD, pErr);
  wStatus = OCISessionBegin(pSvcCtx, pErr, pSession, OCI_CRED_RDBMS, OCI_DEFAULT);
  if (wStatus == OCI_ERROR)
  std::cout << "Unable to begin a session.";
  return 0;
  OCIAttrSet(pSvcCtx, OCI_HTYPE_SVCCTX, pSession, 0, OCI_ATTR_SESSION, pErr);
  std::cout << "Connected.";
  OCIStmt *pStmt;
  OCIBind *pBind;
  wStatus = ::OCIHandleAlloc(pEnv, (void**)&pStmt, OCI_HTYPE_STMT, 0, NULL);
  if (wStatus == OCI_ERROR)
  std::cout << "failed allocate statement handle." << std::endl;
  return 0;
  OraText *lpSQL = (OraText*) "Insert into test (prop, value) values(:p, :v)";
  wStatus = ::OCIStmtPrepare(pStmt, pErr, lpSQL, strlen((char*)lpSQL), OCI_NTV_SYNTAX, OCI_DEFAULT);
  if (wStatus != OCI_SUCCESS)
  PrintError(pErr);
  int nProp[5] = {1, 2, 3, 4, 5};
  char szValue[5][20];
  strcpy_s(szValue[0], _countof(szValue), "V1");
  strcpy_s(szValue[1], _countof(szValue), "V2");
  strcpy_s(szValue[2], _countof(szValue), "V3");
  strcpy_s(szValue[3], _countof(szValue), "V4");
  strcpy_s(szValue[4], _countof(szValue), "V5");
  wStatus = ::OCIBindByName(pStmt, &pBind, pErr, (OraText*)":p", 2, nProp, sizeof(int), SQLT_INT, NULL, NULL, NULL, NULL, NULL, OCI_DEFAULT);
  wStatus = ::OCIBindByName(pStmt, &pBind, pErr, (OraText*)":v", 2, szValue, sizeof(szValue[0]), SQLT_STR, NULL, NULL, NULL, NULL, NULL, OCI_DEFAULT);
  wStatus = ::OCIStmtExecute(pSvcCtx, pStmt, pErr, 5, 0, NULL, NULL, OCI_COMMIT_ON_SUCCESS);
  if (wStatus != OCI_SUCCESS)
  PrintError(pErr);
  ::OCISessionEnd(pSvcCtx, pErr, pSession, OCI_DEFAULT);
  ::OCIServerDetach(pServer, pErr, OCI_DEFAULT);
  return 0;
void PrintError(OCIError *pError)
  UCHAR szMessage[1024];
  memset(szMessage,0,1024);
  sb4 ErrorCode;
    (void) OCIErrorGet((dvoid *)pError, (ub4) 1, (text *) NULL, &ErrorCode, szMessage, (ub4) sizeof(szMessage), OCI_HTYPE_ERROR);
  std::cout << "Error:" << szMessage << std::endl;

according to Oracle document, the OCIBindArrayOfStruct must be called for array insert, but I observed a stranger behavior that I bind the address of array through OCIBindByPos and didn't call OCIBindArrayOfStruct, and the call OCIStmtExecute, give iters the number of element of array. all data in array are insert succeeded, so I am wonder what will happen if OCIBindArrayOfStruct is not called? and why even the function is not called, array insert still succeeded? It seems OCI's behavior is same as OCIBindArrayOfStruct if iters great than 1.@
#include "stdafx.h"
#include "oci.h"
void PrintError(OCIError *pError);
int _tmain(int argc, _TCHAR* argv[])
  char szName[20] = {0};
  char szUID[20] = {0};
  char szPWD[20] = {0};
  OCIEnv *pEnv = NULL;
  OCIError *pErr = NULL;
  OCIServer *pServer = NULL;
  OCISvcCtx *pSvcCtx = NULL;
  OCISession *pSession = NULL;
  OCIInitialize((ub4)OCI_THREADED | OCI_OBJECT, 0, 0, 0, NULL);
  ::OCIEnvInit(&pEnv, OCI_DEFAULT, 0, NULL);
  sword wStatus = ::OCIHandleAlloc(pEnv, (void**)&pErr, OCI_HTYPE_ERROR, 0, NULL);
  if (wStatus == OCI_ERROR)
  std::cout << "Failed allocate Error handle";
  return 0;
  wStatus = ::OCIHandleAlloc(pEnv, (void**)&pServer, OCI_HTYPE_SERVER, 0, NULL);
  if (wStatus == OCI_ERROR)
  std::cout << "Failed allocate Server handle.";
  return 0;
  wStatus = ::OCIHandleAlloc(pEnv, (void**)&pSvcCtx, OCI_HTYPE_SVCCTX, 0, NULL);
  if (wStatus == OCI_ERROR)
  std::cout << "Failed allocate service context handle.";
  return 0;
  std::cout << "Please enter the TNS name:";
  std::cin >> szName;
  std::cout << "Please enter user name:";
  std::cin >> szUID;
  std::cout << "Please enter password:";
  std::cin >> szPWD;
  wStatus = ::OCIServerAttach(pServer, pErr, (OraText*)szName, strlen(szName), OCI_DEFAULT);
  if (wStatus == OCI_ERROR)
  std::cout << "Unable to attach to a server.";
  return 0;
  OCIAttrSet(pSvcCtx, OCI_HTYPE_SVCCTX, pServer, 0, OCI_ATTR_SERVER, pErr);
  wStatus = ::OCIHandleAlloc(pEnv, (void**)&pSession, OCI_HTYPE_SESSION, 0, NULL);
  if (wStatus == OCI_ERROR)
  std::cout << "Unable to allocate a session handle.";
  return 0;
  OCIAttrSet(pSession, OCI_HTYPE_SESSION, (void*)szUID, strlen(szUID), OCI_ATTR_USERNAME, pErr);
  OCIAttrSet(pSession, OCI_HTYPE_SESSION, (void*)szPWD, strlen(szPWD), OCI_ATTR_PASSWORD, pErr);
  wStatus = OCISessionBegin(pSvcCtx, pErr, pSession, OCI_CRED_RDBMS, OCI_DEFAULT);
  if (wStatus == OCI_ERROR)
  std::cout << "Unable to begin a session.";
  return 0;
  OCIAttrSet(pSvcCtx, OCI_HTYPE_SVCCTX, pSession, 0, OCI_ATTR_SESSION, pErr);
  std::cout << "Connected.";
  OCIStmt *pStmt;
  OCIBind *pBind;
  wStatus = ::OCIHandleAlloc(pEnv, (void**)&pStmt, OCI_HTYPE_STMT, 0, NULL);
  if (wStatus == OCI_ERROR)
  std::cout << "failed allocate statement handle." << std::endl;
  return 0;
  OraText *lpSQL = (OraText*) "Insert into test (prop, value) values(:p, :v)";
  wStatus = ::OCIStmtPrepare(pStmt, pErr, lpSQL, strlen((char*)lpSQL), OCI_NTV_SYNTAX, OCI_DEFAULT);
  if (wStatus != OCI_SUCCESS)
  PrintError(pErr);
  int nProp[5] = {1, 2, 3, 4, 5};
  char szValue[5][20];
  strcpy_s(szValue[0], _countof(szValue), "V1");
  strcpy_s(szValue[1], _countof(szValue), "V2");
  strcpy_s(szValue[2], _countof(szValue), "V3");
  strcpy_s(szValue[3], _countof(szValue), "V4");
  strcpy_s(szValue[4], _countof(szValue), "V5");
  wStatus = ::OCIBindByName(pStmt, &pBind, pErr, (OraText*)":p", 2, nProp, sizeof(int), SQLT_INT, NULL, NULL, NULL, NULL, NULL, OCI_DEFAULT);
  wStatus = ::OCIBindByName(pStmt, &pBind, pErr, (OraText*)":v", 2, szValue, sizeof(szValue[0]), SQLT_STR, NULL, NULL, NULL, NULL, NULL, OCI_DEFAULT);
  wStatus = ::OCIStmtExecute(pSvcCtx, pStmt, pErr, 5, 0, NULL, NULL, OCI_COMMIT_ON_SUCCESS);
  if (wStatus != OCI_SUCCESS)
  PrintError(pErr);
  ::OCISessionEnd(pSvcCtx, pErr, pSession, OCI_DEFAULT);
  ::OCIServerDetach(pServer, pErr, OCI_DEFAULT);
  return 0;
void PrintError(OCIError *pError)
  UCHAR szMessage[1024];
  memset(szMessage,0,1024);
  sb4 ErrorCode;
    (void) OCIErrorGet((dvoid *)pError, (ub4) 1, (text *) NULL, &ErrorCode, szMessage, (ub4) sizeof(szMessage), OCI_HTYPE_ERROR);
  std::cout << "Error:" << szMessage << std::endl;

Similar Messages

  • h:CommandLink : Action event not called on the first click

    Hi,
    I am facing a problem here.
    I have a JSF page:
    When I first load the page, I have few text boxes and dropdowns. With out doing anything If I click the <h:commandLink I call an action in my pagecode.
    But the problem is on the very first load of the page, without doing anything if I click on the command link action event in my pagecode is not called, but If I click on the link the second timethe pagecode actionevent is called.
    So I think tried submitting the form in the JSF page onclik of the commandlink it works in my Local IBM RAD. But doesnot work in the WebSphere Portal.
    So can you tell me if I can submit the form atleast once when the page loads for the first time
    This is my command link:
    <tr>
    <td colspan="2" align="center">
    <h:commandLink styleClass="commandLink" id="lnkBtnCreateUser" action="#{pc_Createuser.doLnkBtnCreateUserAction}">
    <hx:graphicImageEx styleClass="graphicImageEx" id="imgBtnCreateUser" value="/theme/images/btnCreateUser.gif" style="border:0;cursor:pointer" onclick="return onFormSubmit();"></hx:graphicImageEx>
    </h:commandLink>
    </td>
    </tr>
    function onFormSubmit(){
    //enabling all the disable components
    So can anybody please help me on this. Why exactly the pageCode action event is not called for the very first click ???

    seems that a prependID="false" attribute in the respective form was causing the trouble. At least it's working now that I've deleted it.
    I introduced it, because last time the component ID's messed up the output of the error/success messages ("j_id:xxx isn't that of a usefull information to the enduser).
    Edited by: stger on Apr 9, 2008 5:41 PM

  • Not calling the action method??

    hi ..
    now i up with some common problem...
    i said as common problem coz i dont know where the error is occuring.
    here is the description.
    In my jsp
    i am having a panel tabbed pane with 2 panes.
    first pane contains some 20 text boxes with save button, used to save the entered records to the database.
    second pane contains the summary page which displays all the records from the respected table with select option button(radio). By selecting the single radio button we can edit the particular record by getting the same in the first tabbed pane fields...
    (here, i am using a javascript to select any one radio button in the form coz radio buttons are generated thru datatable)
    In java
    ======
    in constructor
    i populate all the data from the table to a list. and i display the populated data to the summay fields.
    save button action
    saving the data to the table
    edit the value
    updating the edited values
    Here, my problem is after entering all the fields in the first tabbed pane
    i click the save button. if there is no data in the table(database) all things working properly, but if there single data, save function is not calling. but the constructor are calling properly.
    i am using hibernate for the database conn.
    i know this is some sort of logical error, i am posting this only if any one who had already face this type of error(might be in setting session values).. suggestions plz..

    Hi;
    Your question is not related wiht Download forum side, Please post your issue on related Forum side:
    Forum Home » Developer Tools » JDeveloper and ADF
    Regard
    Helios

  • HT1382 I've successfully backed up my old iTunes (from version 7.02) to a DVD. I'm hoping to restore it to my new Macbook, but when inserting disc to iTunes 10.7. it tells me that I've inserted a blank disc. What to do? Old iTunes7 does recognizes the dis

    I've successfully backed up my old iTunes (from version 7.02) to a DVD. I'm hoping to restore it to my new Macbook, but when inserting disc to iTunes 10.7. it tells me that I've inserted a blank disc so it does  not suggest to restore the content. What to do? The back up has definitely been a success as when inserting disc back to the old Mac and iTunes7, it does recognize the disc and suggests to add contents to the library.

    I've successfully backed up my old iTunes (from version 7.02) to a DVD. I'm hoping to restore it to my new Macbook, but when inserting disc to iTunes 10.7. it tells me that I've inserted a blank disc so it does  not suggest to restore the content. What to do? The back up has definitely been a success as when inserting disc back to the old Mac and iTunes7, it does recognize the disc and suggests to add contents to the library.

  • Why does my Iphone 5 ring when I get a call, but can not figure out why there is NO sound when I get a text?

    Why does my Iphone 5 ring when I get a call, but can't not figure out why it does not make a sound, when I receive a text or typing???

    Deborah,
    The solutions on here did not work for me.   I tried.....
    I have the same problem with a BRAND NEW iPhone 5c version 7.1- no sound when a text message arrives.
    (1) I have "do not disturb" scheduled correctly.   No partial moon on the main screen near the time and battery indicator.
    (2) I have the ringer icon correct with no slash.    Yes I turned the hardward mute switch to the UP position (ie the one above the + and - buttons on the left side.   I tried messaging with the bell as shown and bell with a slash and neither work.   The mute switch is not red (switch above the + volume hardware switch)     I enabled some assistant using the Settings menu.    And I press the dot (looks like a target symbol) and go to Devices and I can see what position the bell is in....either a bell with a slash or no slash.
    (3) Yes ringtones are configured for text and other. I can hear them when I am under settings > sounds.   But they do not link with the actual hardware.
    (4) I rebooted the iPhone 5c by using the button at top, slide the red bar, then pressed it again, apple came up for a minute and it seemed to be back up.
    (5) I upgraded the IPhone 5c from 7.0.4 to 7.1 using my pc and itunes.   And the upgrade was successful but did not fix the text issue.
    (6) I do not have it in airplane mode or silent mode.
    (7) I reset all settings using Setttings > General > reset > reset all settings .  this wipes settings but not data and media.
    This is really frustrating.

  • How to log in with my old Apple account? I forgot my pass and I did change my apple ID before canceling first?? I am from Croatia so did folow al the discussion and the to resolve the problem but no luck. Can not call from Croatia the Apple help desk

    How to log in with my old Apple account? I forgot my pass and I did change my apple ID before canceling first?? I am from Croatia so did folow al the discussion and the to resolve the problem but no luck. Can not call from Croatia the Apple help desk.i did try all the options but I can not find the phone number to call from Croatia,
    I can not change my Apple ID to the old mail (not possible!)
    The old mail don't accept the new password..
    I can not delete the Icloud all the time asking my the password of the old mail!
    I realy need help

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

  • My Iphone 5 voice speaker is not working.I'm not able to hear the voice of the person calling.But when I put my iphone 5 on speaker mode, things seem ok.Please provide me some suggestions.

    My Iphone 5 voice speaker is not working.I'm not able to hear the voice of the person calling.But when I put my iphone 5 on speaker mode, things seem ok.Please provide me some suggestions.

    Hello rizvijunaid,
    Thank you for providing the details of the issue you are experiencing with calls on your iPhone.  I recommend following the steps in the article below for the issue you described:
    iPhone: Receiver and call audio quality issues
    http://support.apple.com/kb/ts5196
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Can you choose to block phone calls but not texts from a number?

    So I have searched all over the place and have not found an answer.  I am sure someone has blocked me from calling them because when I try to call them I recieve this message: "Welcome to Verizon Wireless. The number you were trying to reach has calling restrictions which has prevented the completion of your call."However I am wondering if they can still receieve my texts.  I have sent two and they both show that they have been delivered on my phone and they both also show up on my online bill as having been sent from me and recieved to the number that I am pretty sure has blocked me.  Does Verizon allow someone to block just phone calls but not text messages?  Or if you block a number from calling does that mean texting from that same number is automatically blocked as well (or is it two seperate processes)?  I understand it may look like it has been sent on my end, but I am wondering, since I never got a "message failed" indicator or anything else telling me they never got it, if they were able to receive and read the 2 messages?  We both are Verizon customers by the way.  Thanks!!!

    That person did block you, and no they cannot receive or read your texts.

  • I have poor/no service on my iphone 6  in places that I do have service on my old iphone 5.  Takes 10 minutes to send text and webpages will not load but load within seconds on the iphone 5 and forget making a phone call.  How do i resolve this issue??

    I have poor/no service on my iphone 6  in places that I do have service on my old iphone 5.  Takes 10 minutes to send text and webpages will not load but load within seconds on the iphone 5 and forget making a phone call.  How do i resolve this issue??

    Hey kristiac,
    Thanks for the question. If I understand correctly, you have no service on the iPhone. I would recommend that you read this article, it may be able to help the issue.
    If you can't connect to a cellular network or cellular data - Apple Support
    Thanks for using Apple Support Communities.
    Have a good one,
    Mario

  • Intercompany stock transfer but BUV not calling

    HI expert,
    we are doing cross company stock transfer. we have made sto, delivery, post goods issue, and goods reciept in receving site.
    but problem is that during PGI, inter company clear accounting entries is not calling. ie transaction  key 'BUV' is not caaling during PGI.
    how we can call automatic intercompany clearing during PGI.
    Regards,
    Santosh

    solved.
    it will call when you will use document type UB for interconmany.

  • My touch screen is not working at all and I've tried numerous times to turn it off and on but with no success to getting the touch screen to work again.  Any suggestions to get it back working?

    My touch scree will not work at all.  It just stopped one day and has not worked since.  I've tried numerous times to restart it but with no success at all.  The only tning I haven't tried is resetting it back to it's original setting when I bought it 2 years ago>  Any suggestions??

    When resetting the iPod to factory defaults/new iPod fails to resolve a problem, the problem is likely due to a a hardware problem. An appointment at the Genius Bar of an Apple store is then in order.

  • When I press on a land line number, the phone does not call the number, but comes up with a screen to send a text to it.  How do I get my phone to default to phoneing a landline?

    When I press on a land line number, the phone does not call the number, but comes up with a screen to send a text to it.  How do I get my phone to default to phoneing a landline?  When I press a mobile number in contacts, the phone automatically phones the number.  I do not mind this as I hardly ever send texts, but I would like to have the option of what to do.  This seems such an obvious issue but I can not solve it even with much web searching.  Thanks!

    I can't delete my question, so I'll just say that you press on the type of number written in the box to the left of the box you typye the number into.  Dumb or what? 

  • My iphone is gray or black it is functioning but you can not see the screen so I can not call or text or anything

    My iphone is gray or black it is functioning but you can not see the screen so I can not call or text or anything,  I have a child that is very ill and I have to have access to a phone at all times can someone help me?  It happened one other time when I plugged it in to my to listen to music.  I know it is working it said something on voice control.  I tried the press the circle button and the top button but the screen only turned white?

    Try the following:
    - A reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory settings/new iPod.
    If you still have the problem that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order

  • What can I do if not one but two different supervisors have promised to call me back but have not?

    We had 4 lines and shared 6Gb/1Gb promotional of data.  Bill was appoximately $290 after receiving an employee discount through my employer of
    22% on the plan (does not apply to the individual lines).
    To make a long story short my wife called early in September about adding our oldest daughter back to our plan.  She spoke with a representative by the name of Devin who told her that our bill would NOT go up but instead would go down automatically once we moved to a plan with 10Gb and that the bill would be approximately $225-235 per month for the 5 lines.
    September 15th before adding my daughter we called again to verify the charges and finding out what we had to do to add her back.  This representative also told me the bill would be $235 per month but couldn't explain why - she did see that it was in the notes.   I was also was told that it was best to add her the night after her employer plan stopped covering her phone.
    September 18th before adding her we called to find out what we had to do to add her back.   This rep repeated what the others had said about the upcoming monthly charges.
    The following Monday or Tuesday I called and talked with yet another representative trying to discover what was the reason for the bill dropping so significantly.  The lady I spoke with indicated that we were to get a $22 (NOT $25) discount per line.  I know its an odd figure thats why I remember it.
    Sep 26th - called and spoke with representative who told me that we woud NOT be getting any discounts.  I then spoke with a supervisor (Derrick) who explained that we should have already been getting $25 off for two of the lines and gave us credit for 1 month charges but nothing else.   I asked him to pull the recordings - he said give him a week to investigate and make it right.
    Oct 3rd - a week later - Derrick missed the callback.
    Oct 4th - called and was advised that they had no way to get in touch with Derrick other than sending a message (I have to admit the gentleman was extremely pleasant - one of the better reps I've encountered) - said as much to his supervisor.
    Oct 11th - talked with Priscilla and then her supervisor who said that one of the reps was her employee - would talk with her/pull the recording and call me back in an hour.  She never called back.
    We never asked for any discount - it was a Verizon employee that told my wife that the bill would go down to $230.  Not once but 4 different times.  Two supervisors promised they would pull the recordings and call us back but never did.
    I'm not stupid - If the recordings proved that we made this up or that Verizon had NOT told us that the bill would go down to $230 then they 
    would have called back and rubbed it in my face.   By them not calling back I know that they have discovered that we have stated the facts as
    accurately as we can remember and have not made this up.
    Is there anyone at Verizon that can resolve this situation to our satisfaction?  There's a lot of difference between the promised $110 discount and the $50 indicated by Derrick.

    Don't worry you will not hear back if it's anything like my last few interaction with this company good luck. Oh you may have one of these online CSR tell you they are here to help but that just a smoke screen.

  • I need to reset my security questions, but can I  message  support  by text and not call or if you can tell me how to reset my questions here that will be great and I don't have a rescue email.

    I need to reset my security questions, but can I  message  support  by text and not call or if you can tell me how to reset my questions here that will be great and I don't have a rescue email.

    If you've forgotten the answers, you can't do that yourself. Click here, tell the iTunes Store staff that you can't call, and see what they say.
    (109704)

Maybe you are looking for

  • Ipod freezing when connecting to pc

    i just purchased a 30 gig ipod this summer, but when i plug it into my pc, the ipod lights up and freezes on the first menu...the ipod stays on this screen until the batteries drain. This has happened all but one time when plugging it in. i can't eve

  • Links doesn't open

    Hi, I have prepared e-learning course in Cp 5.5. In some computers there is a problem with open external links. It is caused by Flash Player settings. When I go into Global Security Settings panel and add local folder with course files everthing is r

  • Removing alias from finder window?

    hi! somehow i created an alias "Documents" folder which shows up in my Finder window. i am unable to open it with a right or left click to try and move it to the trash. i am also unable to drag it to the trash. can anyone help please?

  • I was facing problem while connecting to oracle database.Can some one help me soon!!!!!

    Hi all, I was facing problem from last week.Suddenly i was getting ora-12505 error while connecting to the database through toad.I tried to change tnsnames.ora & listener.ora in multiple ways,but no luck...Inspite i was getting different errors like

  • Purpose of correlation id in jms?

    hi friends, Good Day! I'm new to jms adapter on that one i'm unable to understand the correlation id process. For what purpose we can use correlation ID in jms adapter please help me with example. advance in Thanks, Suresh. Edited by: 922128 on Apr 2