Problem in JComboBox selected Index change

hi all
Can anyone send me the code for Loading values to JComboBox & then i want to Display Particular value for that Loaded value in JTextField.
Ex:
I loaded category cade for JComboBox & when JComboBox selected index change the particular category name should appear in JTextBox
Thankz

Hi,
I am sending a sample program.
Try this, if u had any problem just mail me at [email protected]
import javax.swing.*;
import java.util.*;
import java.io.*;
import java.awt.*;
import java.awt.event.*;
public class SwingDemo extends JFrame implements ItemListener
     JComboBox combo;
     JTextField text;
     Properties props;
     public SwingDemo() throws Exception
          super();
          combo=new JComboBox();
          text=new JTextField();
          addItems("combodata.dat");
          setLayout(new GridLayout(2,1));
          add(combo);
          add(text);
          combo.addItemListener(this);
          setTitle("JComboBox - Demo");
          setSize(400,400);
          setVisible(true);
          setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          pack();
     public static void main(String[] args) throws Exception
          new SwingDemo();
     public void addItems(String str) throws Exception
          FileInputStream fis=new FileInputStream(str);
          props=new Properties();
          props.load(fis);
          Enumeration e=props.propertyNames();
          while(e.hasMoreElements())
               combo.addItem((String)e.nextElement());
     public void itemStateChanged(ItemEvent ie)
          //System.out.println(ie.getSource());
          //System.out.println((ie.getSource()==combo));
          if(ie.getSource()==combo)
               System.out.println(combo.getSelectedItem());
               System.out.println(props.getProperty(combo.getSelectedItem().toString()));
               text.setText(props.getProperty(combo.getSelectedItem().toString()));
               pack();
For the above program I took data from a file instead of the database
You have to create that file to execute the above program with the name combodata.dat and the values as follwos
1=BSc
2=BCA
3=BA/BCom
4=MSc(IS)
5=MSc(Cs)
6=MCA
7=BE/BTech
8=MBA
Bye...
Thanks & Regards,
Santhosh Reddy Mandadi

Similar Messages

  • TaxonomyWebTaggingControl - how to fire a jquery method during selected index changed event.

    I have a taxonomyWebTaggingControl of Sharepoint 2013. I want to populate other controls on the page on change event of taxonomy Control.
    Is there a way to do this with this control. 
    I have seen from view source that the control is a span with an hidden field, but when I have tried to attach a change event to that hidden field using jquery then could not do the same.
    Can idea would be highly appreciated?
    Thanks & Regards, Soumyadev | Posting is provided "AS IS" with no warranties, and confers no rights.

    Your problem is that you are using the textboxes to perform two separate functions, displaying the current selection and editing. This sort of approach is asking for just the kind of trouble that you are experiencing. Experience tells me that if you persevere
    for long enough, you will eventually get it to work, but the result will be a confusing tangle of setting and unsetting flags based on whether the textboxes have gained or lost the focus (and hence the text change is due to the user typing in the box or not),
    and you won't have any way for the user to cancel their changes if they make a mistake.
    I suggest adding an Edit button which explicitly sets the textboxes into edit mode, and Apply and Cancel buttons to confirm or discard the changes. Or possibly even better, write a new form just for editing that is invoked when the Edit button is pressed.

  • Problem with ViewStack selected Index

    Hi,
    I am having issues selecting the initial index of a view stack. For example I have the following: <mx:ViewStack selectedIndex = 1> and it does not select this index. I think it has something to do with the fact that this particular child is HDividedBox I've had the same issue before in a different app and I just didn't fix it nor found a work-around.
    Any ideas.
    Here is a snipped of my code:
    <mx:ViewStack id="vStack"
                          width="100%" height="100%"
                          selectedIndex="1" creationPolicy="all">
              <!--VStack.index=0-->
              <mx:VBox id="vBoxSpinner">
                   <ns:Spinner id="spinner" size="50" tickColor="black"/>
                   <mx:Label text="{Global.STR_LOADING}"/>
              </mx:VBox>
              <!--VStack.index=1-->
              <mx:VBox id="vBoxChart" width="100%" height="100%">
                   <mx:HDividedBox id="hDividedBoxBarChart"
                                       resizeToContent="true"
                                        width="100%" height="100%">
                        <mx:ColumnChart id="chartClients"
                                         styleName="MyColumnChart"
                                         width="100%" height="100%"
                                         itemClick="onDgItemClick(event)"
                                        dataProvider="{_fakeData}"
                                        showDataTips="true">
                             <mx:series>
                                  <mx:ColumnSet type="stacked">
                                       <mx:ColumnSeries
                                                      yField="prodIssues"
                                                        fill="{scProdIssue}"
                                                        stroke="{skProdIssue}"
                                                        displayName="Prod Issues"/>
                                       <mx:ColumnSeries
                                                      yField="clientMajor_EnhancementRequest"
                                                        fill="{scClntMjrEnh}"
                                                        stroke="{skClntMjrEnh}"
                                                        displayName="Client Major Enhancements"/>
                                       <mx:ColumnSeries
                                                      yField="clientMinor_EnhancementRequest"
                                                        fill="{scClntMinorEnh}"
                                                        stroke="{skClntMinorEnh}"
                                                        displayName="Client Minor Enhancements"/>
                                       <mx:ColumnSeries
                                                      yField="newClientBuild"
                                                        fill="{scNewClntBuild}"
                                                        stroke="{skNewClntBuild}"
                                                        displayName="New Client Build"/>
                                       <mx:ColumnSeries
                                                      yField="internalMajorEnhancement"
                                                        fill="{scIntMjrEnh}"
                                                        stroke="{skIntMjrEnh}"
                                                        displayName="Inernal Major Enhancement"/>
                                       <mx:ColumnSeries
                                                      yField="internalMinorEnhancement"
                                                        fill="{scIntMinorEnh}"
                                                        stroke="{skIntMinorEnh}"
                                                        displayName="Inernal Minor Enhancement"/>                 
                                  </mx:ColumnSet>          
                             </mx:series>
                             <mx:secondSeries>
                                  <mx:LineSeries id="lnSeriesCaseClosed"
                                                    dataProvider="{_fakeData}"
                                                    displayName="Cases Closed"
                                                    lineStroke="{new Stroke(StrokeColors.DarkOrangeSk.color, 4, _alphaTimesheetData)}"
                                                    yField="casesClosed"
                                                    hideDataEffect="fadeHideDataFx"
                                                    showEffect="fadeShowDataFx"
                                                     />
                                  <mx:LineSeries id="lnSeriesCaseOpen"
                                                    dataProvider="{_fakeData}"
                                                    displayName="Cases Open"
                                                    lineStroke="{new Stroke(StrokeColors.BlueSk.color, 4, _alphaTimesheetData)}"
                                                    yField="casesOpen"
                                                    hideDataEffect="fadeHideDataFx"
                                                    showEffect="fadeShowDataFx"
                                                     />
                             </mx:secondSeries>
                             <mx:verticalAxisRenderers>
                                  <mx:AxisRenderer axisStroke="{StrokeColors.BlueSk}" axis="{vAxisChartClients}"/>
                             </mx:verticalAxisRenderers>     
                             <mx:secondVerticalAxis>
                                  <mx:LinearAxis id="vAxisSecondChartClients" />
                             </mx:secondVerticalAxis>
                             <mx:secondVerticalAxisRenderer>
                                  <mx:AxisRenderer axis="{vAxisSecondChartClients}" placement="right" axisStroke="{StrokeColors.BlueSk}"/>
                             </mx:secondVerticalAxisRenderer>
                             <mx:horizontalAxisRenderers>
                                  <mx:AxisRenderer axisStroke="{StrokeColors.BlueSk}" labelRotation="45" axis="{hAxisChartClients}"/>
                             </mx:horizontalAxisRenderers>
                             <mx:verticalAxis>
                                  <mx:LinearAxis id="vAxisChartClients" title="# Parent Cases"/>
                             </mx:verticalAxis>
                             <mx:horizontalAxis>
                                  <mx:CategoryAxis categoryField="account" title="Account" id="hAxisChartClients"/>
                             </mx:horizontalAxis>
                        </mx:ColumnChart>
                        <mx:VBox id="vBoxLegeng" paddingTop="10" horizontalScrollPolicy="off" verticalScrollPolicy="off">
                             <mx:HBox id="hBoxTsData">
                                       <mx:CheckBox id="chkCaseClosedOpened" selected="true" click="onChkCaseClosedOpenedCicked(event)"/>
                                       <mx:Label text="Cases - Open/Closed"/>
                                  </mx:HBox>
                             <mx:Legend dataProvider="{chartClients}"/>     
                        </mx:VBox>
                   </mx:HDividedBox>
              </mx:VBox>
              <!--VStack.index=2-->
              <mx:VBox id="vBoxDgChildCases" width="100%" height="100%">
                   <mx:DataGrid width="100%" height="100%" id="dgChildCases"/>
              </mx:VBox>
         </mx:ViewStack>

    Simplify the test case.  Use just labels in both children and see what happens.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Web part not doing anything on selected index change.

    My code is below. I tried to remote debug but when I do the breakpoint will not be hit.  No symbols have been loaded for this document.  When I bring up the modules my dll doesn't appear in there.  If anyone can see anything wrong with my
    code please advise
    using System;
    using System.ComponentModel;
    using System.Data;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Windows.Forms;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.WebControls;
    namespace PurchasingPortal.Vendor.DropDown
        [ToolboxItemAttribute(false)]
        public class DropDown : WebPart
            String drpListSelected = "";
            DropDownList drpList = new DropDownList();
            protected override void CreateChildControls()
                SPSite site = SPContext.Current.Site;
                SPWeb web = SPContext.Current.Web;
                SPQuery query = new SPQuery();
                SPList list1 = web.Lists.TryGetList("Vendor");
                if (list1 != null)
                    DataTable dtvendor = new DataTable();
                    dtvendor = list1.GetItems(query).GetDataTable();
                    drpList.DataSource = dtvendor;
                    drpList.DataTextField = "Title";
                    drpList.DataValueField = "ID";
                    drpList.DataBind();
                    Controls.Add(drpList);
                  //  drpList.SelectedIndexChanged += new EventHandler(this.ddlAllLists_SelectedIndexChanged);
                    drpList.SelectedIndexChanged += new EventHandler(drpList_SelectedIndexChanged);
          //  void ddlAllLists_SelectedIndexChanged(object sender, EventArgs e)
            void drpList_SelectedIndexChanged(object sender, EventArgs e)
                try
                    //set the selected value and logic
                    drpListSelected = drpList.SelectedValue;
                    global::System.Windows.Forms.MessageBox.Show(drpListSelected);
                    this.Page.Response.Redirect("http://drive.penskeautomotive.com/corporateservices/purchasing/Lists/Vendor/DispFormVendor.aspx?iD="
    + drpListSelected);
                catch (Exception ex)
                    //  LogManger.WriteLog(" Error in EventCalendarWebPart.cs ddlAllLists_SelectedIndexChanged()" + ex.ToString());
                    Console.WriteLine(" Error in DropDown.cs ddlAllLists_SelectedIndexChanged()" + ex.ToString());
            protected override void Render(HtmlTextWriter output)
                EnsureChildControls();
                base.RenderContents(output);

    your code is missing
    drpList.AutoPostBack = true;

  • Performance problem because of ignored index

    Hi,
    We have a performance problem with kodo ignoring indexes in Oracle:
    Our baseclass of all our persistent classes (LogasPoImpl) has a subclass
    CODEZOLLMASSNAHMENIMPL.
    We use vertical mapping for all subclasses and have 400.000 instances of
    CODEZOLLMASSNAHMENIMPL.
    We defined an additional index on an attribute of CODEZOLLMASSNAHMENIMPL.
    A query with a filter like "myIndexedAttribute = 'DE'" takes about 15
    seconds on Oracle 8.1.7.
    Kodo logs something like the following:
    [14903 ms] executing prepstmnt 6156689 SELECT (...)
    FROM CODEZOLLMASSNAHMENIMPL t0, LOGASPOIMPL t1
    WHERE (t0.myIndexedAttribute = ?)
    AND t1.JDOCLASS = ?
    AND t0.JDOID = t1.JDOID
    [params=(String) DE, (String)
    de.logas.zoll.eztneu.CodeZollMassnahmenImpl] [reused=0]
    When I execute the same statement from a SQL-prompt, it takes that long as
    well, but when I swap the tablenames in the from part
    (to "FROM LOGASPOIMPL t1, CODEZOLLMASSNAHMENIMPL t0") the result comes
    immediately.
    I've had a look at the query plans, oracle creates for the two statements
    and found, that our index on myIndexedAttribute is not used
    by the first statement, but it is by the second.
    How can I make Kodo use the faster statement?
    I've tried to use the "jdbc-indexed" tag, but without success so far.
    Thanks,
    Wolfgang

    Thank you very much, Stefan & Alex.
    After computing statistics the index is used and the performance is fine
    now.
    - Wolfgang
    Alex Roytman wrote:
    ANALYZE TABLE MY_TABLE COMPUTE STATISTICS;
    "Stefan" <[email protected]> wrote in message
    news:btlqsj$f18$[email protected]..
    When I execute the same statement from a SQL-prompt, it takes that longas
    well, but when I swap the tablenames in the from part
    (to "FROM LOGASPOIMPL t1, CODEZOLLMASSNAHMENIMPL t0") the result comes
    immediately.
    I've had a look at the query plans, oracle creates for the twostatements
    and found, that our index on myIndexedAttribute is not used
    by the first statement, but it is by the second.
    How can I make Kodo use the faster statement?
    I've tried to use the "jdbc-indexed" tag, but without success so far.I know that in DB2 there is a function called "Run Statistics" which you
    can (and should do) on all tables involved in a query (at least once a
    month, when there are heavy changes in the tables).
    On information gathered by this statistics DB2 can optimize your queries
    and execution path's
    Since I was once involved in query performance optimizing on DB/2 I can
    say you can get improvements of 80% on big tables on which statistics are
    run and not. (Since the execution plans created by the optimizer differ
    heavily)
    Since I'm working now with Oracle as well, at least I can say, that Oracle
    has a featere like statistics as well. (go into the manager enterprise
    Console and click on a table, you will find a row "statisitics last run")
    I don't know how to trigger these statistics nor whether they would
    influence the query execution path on oracle (thus "swapping" tablenames
    by itself), since I didn't have time to do further research on thatmatter.
    But it's worth a try to find out and maybe it helps on you problem ?

  • Combo box selected index is not working.

    Hi guys, I have a problem with changing the combo box selected index.
    I load a list of phone types(such as "Home","Office",...) using Remote Object and assign it as a data provider for a combo box.What I need is to select a specific index in the combo but combo.selectedIndex statement doesn't work for the first time, I mean the combo changes its index only if I load the view again.
    I checked different examples, solutions but none of them worked for me!! Can anyone here help me to figure out the problem?
    Here is my Code:
    <mx:Canvas creationComplete="init()"
                 xmlns:mx="http://www.adobe.com/2006/mxml">
         <mx:ComboBox id="comboPhone0"
                    prompt="Type"
                    dataProvider="{phoneTypeList}"
                    />
    <mx:Script>
         <![CDATA[
    [Bindable]
    private var phoneTypeList:ArrayCollection;
    private function init():void
         loadPhoneType();
    private function loadPhoneType():void
         phoneTypeLoaderService.getPhoneType(); //phoneTypeLoaderService is a remote Object to load the phone types
    private function handlephoneTypeLoadResult(ev:ResultEvent):void
         phoneTypeList=ev.result as ArrayCollection;
            comboPhone.selectedIndex = getComboSelectedIndex("HOME");
    private function getComboSelectedIndex(phoneType:String):int
    var index : int= -1;
    var result : int= -1;
         for each (var pt:PhoneType in phoneTypeList)
              if (pt.type == phoneType)
                        result = index;
                        break;
              else{
                   index++;
              return result;
         ]]>
         </mx:Script>
    </mx:Canvas>

    hi
    I think in getComboSelectedIndex() method index should initialized to zero. If that does not work use after assigning the data from result event.
    phoneTypeList.refresh();
    Hope this helps
    Rush-me

  • Strange problem with JComboBox

    I am having a strange problem with JComboBox, I created a method as a JComboBox factory which returns a JComboBox filled with items. the method works fine and I can see the items in the JComboBox. The problem is when I try using the method myCombo.SelectedItem(String item); the object myCombo does not set the selected item, it just leaves the item blank (or unselected).
    //This method build a JComboBox
    public javax.swing.JComboBox makeJComboBox(String[] items) {
    javax.swing.JComboBox myComboBox = new javax.swing.JComboBox();
    for (int index=0;index<items.length;index++){
    myComboBox.addItem(makeObj(items[index]));
    return myComboBox;
    public Object makeObj(final String item) {
    return new Object() {
    public String toString() {
    return item;
    }

    Couple of better ways to populate a combo with items-
    public javax.swing.JComboBox makeJComboBox(String[]items) {
    javax.swing.ComboBoxModel cbModel = new DefaultComboBoxModel(items);
    javax.swing.JComboBox myComboBox = new javax.swing.JComboBox(cbModel);
    return myComboBox;
    }OR
    public javax.swing.JComboBox makeJComboBox(String[]items) {
    return new javax.swing.JComboBox(items);

  • Set Radio Group Default Value Based on a Select List Change Event

    Apex 4.2
    I have a radio group that is source is below. It returns 3 radio group item All,Miv,Courier
    SELECT type d, code r FROM vw_lov_depot
      WHERE svc_name = :P320_DEPOT
      ORDER BY 1
    The radio group is only populated when :P320_DEPOT gets a value, this is a select list.
    I am trying to set the radio group to  default to this value Miv it would use the statement
    SELECT type d, code r FROM vw_lov_depot
      WHERE svc_name = :P320_DEPOT
      and type ='Miv'
      ORDER BY 1
    I have tried creating a dynamic action on Select list change to populate the default value of the radio group...no joy I also tried a computation. how can I set this default value on when list changed.
    Thanks
    I have got the default Radio Group Selection working by doing a computation before region on the radio group and calling its select statement and setting the value. But the problem is now I cannot change the radtio group as I do it fire the before region trigger and sets it back to the default value....any help?

    Hi,
    Could you please create example to apex.oracle.com?
    Regards,
    Jari

  • How to get the previous row selected index of a table....

    Hi friends,
    I have a table. i have a action/event handler defined on its onLeadSelect event.
    In this event, if i use node_code->get_lead_selection_index( ) .. i m getting the newly clicked row index.
    ex: table has 3 rows.
    Row 1 is by default selected. Now if i select the row 3, in my event by using node_code->get_lead_selection_index( ). im getting index 3. which i sel
    But i want to get index 1. 
    kindly help me.. i dont have any other option as i m very new to this.
    hope i gave u correct inputs on my problem.
    thanks in advance,
    Niraja

    One way to achieve this is to maintain an attribute in the assistance class or a node element , called OldLeadSelection , at the Component controller level which stores the value of the lead selection index.
    On LeadSelect action handler method, in the first line, read the value of the attribute/element defined above. For the first time a row is lead selected, this value will be initial. After exexcuting the code in the LeadSelection event handler method, store the LeadSelection index value in the attribute defined above. The next time when the LeadSelection event method is called, when the value of this attribute is read in the initial line, it will house the value of the index of the previous LeadSelection.
    There could be other ways to achieve this. This is one of the methods.
    Best Regards,
    Rashmi.

  • Problem in displaying selected page items in the title in Graph

    Hi There;
    I have a problem in displaying selected value of named page item in the graphs.
    Eg. I have in my worksheet a page item named "Location"; when I use "&WorksheetName &Location" in the title of worksheet it is displaying both the worksheet title and value of selected page item "Location" in my example.
    But when I use the same (&WorksheetName &Location) in the title of graph or Axis of the graph, it would show up only the name of the worksheet but not the value of page item "Location", instead it would print "&Location"
    Any idea why it is not able to reference the select page item in Discoverer graph? I am using Oracle BI Discoverer 10.1.2.1.
    Thanks in Advance,
    Regards,
    Nidhi Jethoo

    Hi Michael;
    Thanks a lot. It might not have been considered necessary but you do require, e.g in my case I am plotting Average value of a Parameter and it does make sense in including the name/value of Parameter(surface water temp/bottom watter temp) as an Axis instead of just a constant Parameter or say Average Parameter. So that user can plot the variation of different parameters by changing the page items and when user changes the value of parameter and export the graph he/she has the parameter name(actual value) in the graph.
    But I can include all the parameters (&Parameters) or all the page items(using &PageItems) in graph then why not individual page-item and individual parameter.
    I would log a SR and see what they say.
    Thanks again,
    Nidhi

  • How to adopt the index changes during upgrade

    Hi All,
    Please let me know how to adopt the standard index changes during upgrade. We are not able to change using SPDD.
    Regards
    Anil Kumar K

    Hi Micheal,
           I have posted one query can you answer for that also.
    Actually we are facing a problem  in activating the table COEP. It is saying duplicate field name exist for GEBER. But we have checked all the tables and structures.But no duplicates.
    Please help us..
    Regards
    Anil Kumar K

  • JFileChooser selected file changes when folder chages

    Problem with JFileChooser,
    The selected filename change when i change the directories, note that standard windows dialog doesnt behave like this .
    To reproduce: choose "save to file" in process dialog, enter the file name and then change the directory. The file name disappers from the corresponding box. The dialog must keep the entered file name while changing the folder path
    is this a bug ?,
    renjith

    Hi,
    Yes it is!
    http://developer.java.sun.com/developer/bugParade/bugs/4357012.html
    Regards,
    Manfred.

  • Getting the selected index of a table (CL_WD_TABLE) without lead-selection

    Hi
    When I click in a table-UI (not alv-table) on a f4-help, I can search with se11-searchhelp on a field. After I choose something, I should also fill some other fields in the same row.
    In the table I have no lead-selection. So, I am searching for a method that gets me the selected index. The element-class for the table-UI is CL_WD_TABLE.
    Once I have the selected index, I could change the fields in the same row inside the WDDOMODIFYVIEW.
    With activated node-selection it can be, that the user selects one row, but he starts the f4-help on another row (the lead-selection doesn't change).
    I have seen this article, but i hope that for the table-UI it is different than with alv:
    [ON_CELL_ACTION triggered only by ENTER ?]

    Hi Lorenzo,
    I'm trying to do the same thing and came up with this solution. In WDDOMODIFYVIEW, since we cannot know in which table row the user clicked the search help, I simply loop through all the rows of the table. For each row, I delegate to a method in the Component Controller which sets the specified index as the table's lead selection then reads the selected table row from the context. I can then populate fields in the selected row as needed.
    METHOD wddomodifyview .
       DATA lo_componentcontroller TYPE REF TO ig_componentcontroller.
       DATA lo_nd_items TYPE REF TO if_wd_context_node.
       DATA lt_items TYPE wd_this->elements_items.
    * -- Upon return from the search help, populate table row details
       lo_componentcontroller = wd_this->get_componentcontroller_ctr( ).
       lo_nd_items = wd_context->get_child_node( name = wd_this->wdctx_items ).
       lo_nd_items->get_static_attributes_table( IMPORTING table = lt_items ).
    * Since we cannot know in which table row the user requested the search help,
    * loop through all table rows, populating table row details as needed.
       DESCRIBE TABLE lt_items LINES sy-tfill.
       DO sy-tfill TIMES.
    *   Delegate to the Component Controller
         lo_componentcontroller->get_table_row_detail( sy-index ).
       ENDDO.
    ENDMETHOD.

  • Big problem with a select using remote database

    Hi Guy.
    I have a big problem with a simple query, but this is a scenario.
    Actuallly I'm in Alexandria - Egypt with a server with Oracle 10.2.0.4 database 32 bit on linux Red Hat as 4.8. the server can connect to another database oracle but 9.2.0.6 installed on Red Hat As 4.5 placed in Milano Italy . Ttwo networks are connected via two adsl cisco router with firewall and Vpn functions. In Egypt there isn't a very good adsl.
    In Alexandria, I'm trying to connect to database in Italy with sqlplus. The sqlplus connected I write.. select * from addetti and all work fine.
    My problem is that when I try to make the same select on a table with many columns oracle database kill me a session.
    My table (ic_lav) is long 174 colums 1924 byte for row. Well when I write a query with select * from ic_lav all oracle close my session.
    So I began to change my query I start to
    select field1 from ic_lav... and work
    select field1,field2,field3,..........field50 from ic_lav and work
    select field1,field2,field3,..........field70 from ic_lav and doesn't work
    the select work with 68 columns
    problem: the query with more then 1064 byte for row doesn't work.
    I've tryed with anoter big table with the same problem, but the select fwork with 65 columns...
    Iit is obvious that there is any problem with the limit of the query.
    The same query (select * from ic_lav) in localMilano)l work fine.
    The same query (select * from ic_lav) in vpn with a better adsl line and openvpn software (NO CISCO firewall) WORK FINE.
    The same query connectetd in Milano with a vpn make with analogic modem and remote access by windows work fine.
    the query (make on my laptop connectet with vpn by cisco doesn't work.
    In cisco firewall we haven't any error (cisco man tell me so)
    on database 9 I found :
    *** 2009-06-12 09:49:45.509
    *** SESSION ID:(66.44406) 2009-06-12 09:49:45.497
    FATAL ERROR IN TWO-TASK SERVER: error = 12152
    *** 2009-06-12 09:49:45.509
    ksedmp: internal or fatal error
    Current SQL statement for this session:
    select * from ic_lis where ditta
    ----- Call Stack Trace -----
    but I don't understand why the lost connection problem (bug 3816595 A processstate dump is produced for a lost connection (12152) ) is caused by len of row
    Anybody have some idea ?
    Thank you

    My table (ic_lav) is long 174 colums 1924 byte for row. Well when I write a query with select * from ic_lav all oracle close my session.Do you get any error?
    If the query length is a problem, you could create a view and query the view instead to see if this problem is resolved.

  • Hey I have a problem. I want to change my rescue email address as somehow apple has the wrong one but I don't know my security questions - but you need one to change the other. Any help?

    hey I have a problem. I want to change my rescue email address as somehow apple has the wrong one but I don't know my security questions - but you need one to change the other. Any help?

    You can get your Security Questions reset by contacting iTunes Support at either of the two links below. Select the best options for your issue, or provide specific information. Let them know you are contacting them concerning Forgotten Security Questions. They will get back to you via your primary email address, usually within 24 hours. Once your Security Questions have been reset, you will be able to go in and reset your Rescue email address on your account:
    http://www.apple.com/support/itunes/ww/
    or by email:
    http://www.apple.com/emea/support/itunes/contact.html
    Cheers,
    GB

Maybe you are looking for

  • How to I get an iPhoto slideshow onto a DVD?

    I have made a slideshow for my brother's memorial service.  I have exported it out of iPhoto (.mov file).  I cannot seem to get it into iDVD correctly to get to my final product which is a DVD that will play on a "regular" DVD player at the funeral h

  • Problem with LogicCore clocking wizard

    Hi, i got this error during the translate of my design but i can't understand the reason of it: ERROR:NgdBuild:455 - logical net 'CLK_OUT2_SIGNAL' has multiple driver(s): ERROR:NgdBuild:455 - logical net 'CLK_OUT3_SIGNAL' has multiple driver(s): I'm

  • Financial report Templates - PLD

    Dear SAP Experts I have given the formula in Financial report template for calculating Gross profit and it is showing in the reports, but when i taking the pld reports for Pand L, the value of gross profit is not showing. How do i bring that Gross pr

  • Flex builder 3 activation

    Hello, I have problem with FB3 plugin for Eclipse. I have professional license for it and it worked fine. But last week a window with "Trial period expiration" text appeared. I filled valid professional serial number and this window disappeared. But

  • Epson XP-610 will not connect to Macbook Air

    Epson XP-610 says cannot find computer, also says IP already in use. The printer has green WiFi icon lighted. How do I connect to print wirelessly? My WiFi is a pocket WiFi with Telstra.