JUTreeBinding - navigation by findByKey() problem

It will not be easy to provide a test case, so I hope that the following questions will clear things up for me.
We have two trees. Both trees have the same structure. Both trees should act as navigation tool.
This is done by using a TreeSelectionListener which somewhat looks like the JUTreeDefaultMouseListener, except:
It uses findByKey() and setCurrentRow() on the target RowSet so this RowSetIterator's currency is set and so that the ViewLink "chain" is activated.
Two problems:
- findByKey() does not return a row.
- both trees are not completely separated.
I did some research on the JUTreeBinding and in my test project, both problems didn't show up, so I am puzzled.
So my questions are:
1.)
Both VOs (the VO the tree node is bound to and the target VO) are two instances of the same VO type.
In the Javadocs, I read "We now use the key build a where-clause for an internal View Object. That where-clause is applied and qualifying rows are retrieved from it to find the requested number of rows." So it should always come up with at least one row, since both VOs are of the same type, right? Is there another thing that could keep findByKey() from finding a row? How does this where-clause look like?
2.)
If I have two trees with the same structure, then JClient creates an internal VO for every node type except the top-level VO. The problem seems to be: When I have two trees then there are two RowSets for each node type, but they are contained within the very same VO. One RowSet for tree A, one for tree B. So, under certain circumstances, if the user clicks a node in tree A (which then turns out to be a leaf) then the parent node of the corresponding node in tree B collapses (and vice versa). Initially both parent nodes collapsed, but I put in the workaround for the bug in JUTreeNodeBinding.updateValuesFromRows() Shailesh mentioned in an earlier posting. Now only the other tree collapses.
It seems to me, that the event (one tree node turning out to be a leaf) is - in that case unnecessarily - forwarded to all RowSets within the VO. So when the user clicks a node in one tree, updateValuesFromRows() is executed in both trees. How can I turn this off?
If this won't help, then I will try to come up with a test case.
One other thing: While I read the source of JUTreeDefaultMouseListener, I found the method setRulesActions(). According to the Javadocs, one can pass a String[][]. According to the sources the method looks like this:
  public void setRulesActions(String [][] rulesactions)
     hm.clear();
  }Strange, isn't it. Can't figure out how this is supposed to work.
Regards and thanks in advance,
Sascha Herrmann

The two trees closing out at random is due to 'different' binding-iterator instances used internally for the node-accessors. We'd be investigating this further!
We would update this post once we have a workaround/bug.

Similar Messages

  • Navigation and Parameters problem

    Hey all,
    I'm very new to JSF and we are attempting a very basic test app to try and get our heads round things. The app is basically a list of people, with a link to edit them, and a page which lets you edit the person and a button to save the person, after which, you will go back to the list of people.
    I have a personlist.jsp page which obtains a (fixed) list of people from the PeopleDAO, using a h:dataTable to iterate and display each person. Each row has an edit link of the form "......editperson.jsp?PersonID=<number>" where number is the person ID for that person.
    In the edit person page, I have a PersonBean which is used to display the person details. The person bean is specified in faces-config.xml as a managed bean, and I hook the PersonID property of the PersonBean up using a managed property linked to the PersonID param.
    <managed-bean>
    <managed-bean-name>personbean</managed-bean-name>
    <managed-bean-class>mypackage.view.PersonBean</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    <managed-property>
    <property-name>personID</property-name>
    <value>#{param.personID}</value>
    </managed-property>
    </managed-bean>
    I have the navigation set up to go back to the personlist.jsp page once you click the save button :
    <navigation-rule>
    <from-view-id>/editperson.jsp</from-view-id>
    <navigation-case>
    <from-outcome>save</from-outcome>
    <to-view-id>/personlist.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    On editperson.jsp, I have a commandbutton that has an action="save" (this is for simple testing since we are having problems with it) :
    (in the form for editing the person)
    <h:commandButton value="Update" action="save"/>
    The problem is that when you click the button, it tries to reload editperson.jsp without the personID parameter, which causes an error because it is expecting a parameter as specified in the PersonBean managed bean declaration.
    If I set the property to a constant value in the managed bean declaration, everything works fine, but when bound to the parameter, it causes an error.
    I can see why it is an error, but I have no idea how to get around it. Am I passing parameters the wrong way, or is there some option to set a default value for the param, or am I navigating incorrectly?
    Any help is appreciated,
    Cheers,
    Andy

    Well, at last, it seems that after another day of testing, I have found the answer.
    I'm posting back here since I found a number of people who had this problem, and none of them received an answer. Hopefully this might help some poor soul in the future.
    The problem is data type conversion. When there is no person ID, the parameter is effectively a blank string, which of course cannot be converted to an integer. Even specifying the type in the managed property did not help the conversion process.
    I have a mini test app that has a bean with managed int and string properties. The page renders fine when the intValue param is there, but crashes if it is not. The page doesn't give a hoot about whether the textValue parameter is there or not and will always render by substituting a blank string as the value.
    I'm sure there must be some way to pass a parameter to a managed property as an integer without having the application crash if it is missing, especially considering most applications use integers for primary keys.
    I have seen samples that do this, alas, since many don't compile, deploy and run out of the box, I am unable to verify whether or not they break under the same conditions.
    The only thing I can think of is to have the backing bean act as a container for my real objects. I.e. PersonBean has a managed person ID string property which when set, converts the ID to an integer and loads up the person and assigns it to PersonBean.Person .
    This is probably actually a better structure all round, especially if the backing bean for a view needs to contain other objects, i.e. a list of orders for that person. By adding the extra layer in there, it will make it easier to add additional model objects to the backing bean.

  • Navigating back causes problem

    Hello,
    I'm new to Window Phone 8.1 app development. i've deveeloped my app almost to all but at 1 point i'm Experiencing a weird problem.
    before starting, i'm making my problem scenario.
    say, I have about 4 pages. P1 (Start page), P2 (Listing), P3(Criteria), P4(Transactional).
    All these pages are made through NEW Basic page.
    NOw, i start the the app > P1 shows > goto P2 > by button _Click event > goto P3 [Frame.Navigate(typeof(P3), obj);]
    all these navigation is done something like this: [Frame.Navigate(typeof(P3), obj);]
    (i.e. by passing something in parameter)
    Here, i choose one of the criteria to goto P4. P4 is transactional page so, i make a transaction and
    on successfull save, i go back to P2 which
    shows currently saved transaction in the list and MessageDialog, which notify about "New Transaction added!".
    If i press the Back button, i should go back to P1, to my DASHBOARD but, unfortunately, i
    go back to the P4(i didnt decide to goto P4, Back button led me there), 
    Again i press Back Button, P3 comes (atleast now it should go to P1) but P3 comes. Again i press Back Button > P2 comes with message "New Transaction Added" 
    Conclusively, i want to make path something like:
    P1 (Dashboard) > P2 >P3 > P4 > [Transaction save, now frame.Navigate(typeof(p2))] > P2 [back Button Press] > P1 (Dashboard)
    And what i'm getting is : 
    P1 (Dashboard) > P2 >P3 > P4 > [Transaction save, now frame.Navigate(typeof(p2))] > P2  [back Button Press] > P4 [back Button Press] P3 [back Button Press] > P2
    > P1 (Dashboard)
    The navigationHelper in each page, i didnt even touched its methods except
    Load_State handler.
    I guess i'm missing something but what? i don't know.
    this is bit urgent. Kindly help me follow through right direction.
    Thanks..

    Hi
    Whenever you navigate from page to page there is backstack that stores the pages that you had navigated.
    So Backstack-> [p1->p2->p3] p4 this when you reach p4 . So saying back from here it will behave like Stack Last in first out. the last one entered will be show. so back from P4 will show p3
    The solution to this is to remove these enteries from backstack. If you can put this code in onNavigated of p4 so that once navigated it will remove all until the p1 page. It should work well. 
    while (NavigationService.CanGoBack && !(NavigationService.BackStack.FirstOrDefault().StartsWith("/p1.xaml") ))
         NavigationService.RemoveBackEntry();
    You can read more on this
    https://msdn.microsoft.com/en-us/library/windows/apps/hh394012(v=vs.105).aspx
    Regards
    Varun Ravindranath Please 'Mark as Answer' if my post answers your question and 'Vote as Helpful' if it helps you.

  • Navigation Region CSS problem

    workspace : RGWORK
    user : tester
    pass: test12
    apllication name :TESTER 01
    page : 2
    How do I fix the css of my navigation region? their are lines that are extending in the bottom of the region.. How will I solve that?

    The Simple Red (theme 1) CSS includes the following rule:
    .navigation-region div {
        overflow: hidden;
        width: 183px;
        padding: 0 0 4px;
        background: url(../images/bg-navigation-b.gif) no-repeat 0 100%;
    }The <tt>.navigation-region div</tt> descendant selector causes this rule to be applied to all <tt>div</tt> elements that are contained within elements with a class of <tt>.navigation-region</tt>. As it seems unfeasible to expect apps to never have <tt>div</tt>s in a navigation region&mdash;as you've discovered&mdash;I'd say this is definitely a bug. We certainly shouldn't get these kind of artefacts from a combination of built-in components and templates.
    The CSS selector for this rule should be more specific. There are a number of different possible ways to do this. Combining child and pseudo-class<tt>:first-child</tt> pseudo-class is one of them, and avoids having to make any changes to the template HTML.
    The best way to fix this is to copy the theme, modify the errant CSS, and republish the theme in the repository. (In some cases, such as in a hosted environment, this might not be possible.)
    As a simple fix in this example, I created a small custom style sheet and a new page template referencing it:
    .navigation-region div {
      padding: 0;
      background: none;
    .navigation-region > div:first-child {
      overflow: hidden;
      width: 183px;
      padding: 0 0 4px;
      background: url(/i/themes/theme_1/images/bg-navigation-b.gif) no-repeat 0 100%;
    }The first rule resets the problem properties using the same descendant selector as the theme CSS; the second is the "correct" rule that only affects the first child <tt>div</tt> in <tt>.navigation-region</tt> elements.
    There's a slight problem with this fix as the initial reset rule will affect all <tt>div</tt>s in <tt>.navigation-region</tt> elements: it's necessary to ensure that any rules setting <tt>padding</tt> or <tt>background</tt> on other <tt>div</tt>s need to follow this one in the cascade or be more specific than this one, hence creating a copy of the theme is the best option.

  • CSS Navigation with list problem

    Hello all,
    I'm attempting a left side navigation bar using CSS and list
    items. I'm using a change of background color for the hover state.
    For some reason the hover states don't show up at all in IE6, and
    on Firefox my first link ("Home") is not lined up with the other
    links. The page in question is www.greenforlife.net.
    Any help would be greatly appreciated.
    John

    CSS :hover is supported but on the a tag only which you do
    have it on. To
    fix your problem add an IE ( 6 and below ) only rule.
    * html #leftnav a {
    height: 1%;
    You have some weird margining goin on there in the leftnav.
    If you set the
    margin and padding to 0 on your <ol> you won't need to
    use negative margins
    to push your links to the left.
    ADD THIS...
    #leftnav ol {new
    margin: 0;
    padding: 0;
    AND ....
    #leftnav li {
    list-style: none;
    margin-left: -25px;<-- REMOVE THIS
    padding: 0;
    margin: 0;
    Regards,
    ..Trent Pastrana
    www.fourlevel.com
    "John Ciccolini" <[email protected]> wrote
    in message
    news:eh90m9$b0l$[email protected]..
    > Hello all,
    > I'm attempting a left side navigation bar using CSS and
    list items. I'm
    > using
    > a change of background color for the hover state. For
    some reason the
    > hover
    > states don't show up at all in IE6, and on Firefox my
    first link ("Home")
    > is
    > not lined up with the other links. The page in question
    is
    > www.greenforlife.net.
    > Any help would be greatly appreciated.
    > John
    >

  • Avant window navigator and Openbox problem

    Hi,
    I have a problem with AWN and Openbox.
    AWN are showing only in Desktop 1 of Openbox. If I change desktop, AWN not are showing...
    Can I solve this problem?
    Thanks.

    Put this at the end of your ~/.config/openbox/rc.xml:
    <application name="avant-window-navigator">
    <desktop>all</desktop>
    </application>

  • N95 Geocache Navigator application update problem

    I have installed Trimble geocache Navigator SW to the N95 memory card. It is great program and has worked well many weeks. Later i updated it to the new version. All was working correctly few days. Then i noticed that i can't open the program at all. There was only icon but not any other files found or any other track related to that Nav? Of course i though that i have to update it again but reinstallation detected older version and asked to update to new one. Then i agreed that but installation stopped:" cannot install"? I didn't find any other logs or help messages for that.
    After that i updated my phone Firmware to the latest OS version. Then Navigator icon was destroyed but the same installation problem was still there?
    Then i found temporary solution. I removed memory card and installed Navigator to the phone memory. It worked without problem.
    so how i can install the program to the memory card again? Is there some register file which detects the Navigator and which filemanager program i should use for that? Any other ideas?

    Trimble support .
    http://www.geocachenavigator.com/Forums/tabid/228/Default.aspx
     If trimble did not sell you the product but it came via Ovi Store you should contact Ovi Store in regards to a refund  ..
     Another user may come along with more info  or experience with the product .
     jje

  • TomTom NAVIGATOR 6 installation problems on N73

    TT Navigator 6 won't install on my Nokia N73.
    TomTom HOME offers some Destination units.
    Destination unit: 'Symbian Series 60 3rd Edition' reports 'Program not compatible with phone'.
    Destination unit: 'Symbian UIQ 3rd Edition' is accepted, but the following continuing installation on disconnected phone, reports unable to complete!
    Will be greatful for any support.

    I've got the same problem. I am trying to install "NAVIGATOR 6 - Software & Maps of WE" onto my Nokia N73 phone.
    I have connected my phone to the computer as a mass-storage-device, and this appears in TomTom-Home.
    I have installed the latest version of TomTom-Home (V1.5 Build 032).
    I have selected "My Device" as a "Symbian Serias 60 3rd edition", which is correct for the Nokia N73 (running the latest firmware V 3.0704.1.0.1 19-01-2007 RM-133).
    When I do this, ALL of the application choices within the "Application" window of TomTom-Home are greyed out...including "TomTom application for S60" !!
    Despite this, if I select "TomTom application for S60" and try to install it, I get the message "This item is not suitable for you TomTom device".
    I can quite happily install maps, POI etc, but NOT the actual TomTom application.
    I have contacted TomTom support, but as yet have no reply!

  • BC4J FindByKey problem

    I have a uiXML page where the user is entering data into a form, based on a entity object. A new row is created and the row key is set as a paeg property. In my java class (called from an event handler) I am trying to locate the newly created (and committed) row based on that key. The error I am receiving is :
    oracle.jbo.DMLException: JBO-26080: Error while selecting entity for Screening
    java.sql.SQLException: ORA-01410: invalid ROWID
    The handler on my uiXML page looks like this
    <event name="apply" >
    <bc4j:chaining>
    <bc4j:findRootAppModule name="ScreeningView1AppModule" >
        <bc4j:findViewObject name="ScreeningView1" >
            <bc4j:findRow name="CreateScreeningView1"  >
              <bc4j:setPageProperty name="key" >
                <bc4j:stringKey/>
              </bc4j:setPageProperty>
              <bc4j:setPageProperty name="screeningSite">
                <bc4j:parameter name="Site"/>
              </bc4j:setPageProperty>
              <bc4j:setAttribute name="Site"/>
              <bc4j:setAttribute name="Dob"/>
              <bc4j:setAttribute name="SjPositive"/>
              <bc4j:setAttribute name="SjSurvey"/>
              <bc4j:setAttribute name="Sj3Criteria"/>       
              <bc4j:setAttribute name="ConsentForm"/>       
              <bc4j:setAttribute name="ExcludedDiseases"/>               
              <bc4j:setAttribute name="ExcludedDisorders"/>               
              <bc4j:setAttribute name="SerumCreatinine"/>                       
              <bc4j:setAttribute name="HadCancer"/>                       
              <bc4j:setAttribute name="BirthControlOk"/>                       
              <bc4j:setAttribute name="OtherTrials"/>                       
              <bc4j:insertRow/>
              <bc4j:commit/>   
            </bc4j:findRow>
        </bc4j:findViewObject>
      </bc4j:findRootAppModule>
      <method class="jivrDemoPackage.Screening" method="createTxn"/>
      </bc4j:chaining>
    </event>and my java code in Screening.createTxn is
        ViewObject vo = ServletBindingUtils.getViewObject(context); 
        String pageKey = page.getProperty("key");
        Msg.println("Key page property " + pageKey);
        Key key = new Key(pageKey, vo.getAttributeDefs());  
        Row[] viewRows = vo.findByKey(key,1);
        Row viewRow = viewRows[0];The value printed out for pageKey looks like this "0001000000063837353830380000000A000000F6D14CE6B9
    " but straight after this, the error message given at the top of this posting is displayed. Any idea what I'm doing wrong ?
    Thanks,
    Brent

    I have also tried using "usesCurrency=true" in the bc4j registry def and then using ViewObject.getCurrentRow() in my Java and was not working. I realised then that my method call was outisde the view object scope so once I moved it back in (just before the </bc4j:findViewObject> tag) it worked !. However I could still not get the findByKey to work - the same error message was displayed ??
    Thanks
    Brent

  • Navigation Link Width Problem

    Dear All,
    I am created a website wrap (960 px) & table is 960 px, I am set the navigation menu also 960 px. I don’t know 100 px gap come the right side how can I reduce. Gap mention green color. Plz help
    weblink

    Comment out /* width: 960px; */ as shown below, that should work. No need to set a width on an element which is inside a specific width container as it will stretch the full 100% width anyway. The extra width is most likely coming from some padding you have on the anchor tags which get added to the overall width resulting in an overflow.
    .dcjq-mega-menu ul.menu {
        background: #222 url(images/bg_black.png) repeat-x 0 -80px;
        /* width: 960px;*/
        height: 40px;
        border-right: 1px solid #1B1B1B;
        border-left: 1px solid #1B1B1B;
        position: relative; /* Important - required for positioning of mega menu */
        font: normal 13px Arial, sans-serif;
        line-height: 16px;

  • Block navigation/scroll bar problem-- I'm really stuck on this one.

    I have a tabular form with a control block text item where a
    value is entered and is used in the default "where clause" of
    another block. All the items on the form are display items as
    it is designed to only retrieve records-- i.e. no DML. The
    problem occurs when I execute the default query (from a
    when_button_pressed trigger)-- the form is populated and when I
    use the scroll bar, the cursor moves from the control block item
    to the block.item in the block being queried. I want the cursor
    to stay in the block where I am entering values when I am using
    the scroll bar but can't seem to get that to happen. I have
    tried setting the "keep cursor position" property with no
    effect. I can't seem to get this to work from a trigger either.
    However, if I click on "next block" in the toolbar, the cursor
    moves back to the correct item. Anyone have any ideas?
    Thanks in advance.
    Jeff

    I had the same problem using weblogic and oracle clob but I solved it yesterday.
    here is the part of my code:
    import weblogic.jdbc.vendor.oracle.OracleThinClob;
    import java.io.*;
    import java.sql.*;
    PreparedStatement stmt = con.prepareStatement ( "INSERT INTO database VALUES ( ?, EMPTY_CLOB() )" );
    stmt.setInt ( 1, 1 );
    // inserts a new entry with an empty clob object
    stmt.executeUpdate ();
    if ( stmt != null )
    stmt.close();
    // retrieves CLOB-Object
    stmt = con.prepareStatement ( "SELECT clob_field FROM database WHERE id=?" );
    stmt.setInt ( 1, 1 );
    ResultSet rs = stmt.executeQuery ( );
    if ( rs.next() )
    Clob cl = rs.getClob(1);
    Writer clobWriter = ((OracleThinClob)cl).getCharacterOutputStream();
    // Open the sample file as a stream for insertion into the Clob column
    File testFile = new File ( "file.txt" );
    FileReader testReader = new FileReader ( testFile );
    // buffer to hold data to being written to the clob.
    char[] cBuffer = new char[((OracleThinClob)cl).getBufferSize()];
    // Read data from file, write it to clob
    int iRead = 0;
    while( (iRead= testReader.read(cBuffer)) != -1 )
    clobWriter.write( cBuffer, 0, iRead);
    testReader.close();
    clobWriter.close();
    if ( rs != null )
    rs.close();
    if ( stmt != null )
    stmt.close();
    // update clob-data in database      
    stmt = con.prepareStatement ( "UPDATE database SET clob_field = ? WHERE id = ?" );
    stmt.setClob ( 1, cl );
    stmt.setInt ( 2, 1 );
    stmt.executeUpdate();
    Don't forget to handle the exceptions!
    Be sure that "weblogic.jar" is set in %classpath%.

  • E71 navigation button blinking problem.

    navigation button light blinks every 8 seconds. its consuming my battery. can i stop it?
    Solved!
    Go to Solution.

    Yes ... there are a couple of features that could be making it blink, as follows:
    1. It could be notifying you of certain events (such as missed call, texts etc) ... Tools --> Settings --> General --> Personalisation --> Notification light
    or
    2. You might have the "breathing light" enabled (as it is by default). This is set for each profile - for example, you'll find it her for the General profile ... Tools --> Profile --> General --> Personalise --> Breathing light
    By turning off the "Breathing light", I think this will also give you a non-lit digital clock as your screen saver afte your time-out period.
    Hope this helps.
    My previous phones:
    6310i --> SE K750i --> E50 --> E61i --> E71
    ... much prefer the Nokia phones, especially the E71

  • 6210 navigator screen lights problem.

    Buddies!i am new in this forum and i have two 6210n sets.seemingly liquid damaged.now phones display and every thing is ok,but the only problem is LCD lights,please if anybody can help me with diagrams.
    Thanks in advance.
    Br,
    A.Rehman
    south africa

    Hi,
    have you tried going to the nearest Nokia Care Center?so that a tech could assess your phone..and they will help you fix the phone..
    hope this will help you..

  • Nokia 6710 Navigator Message Icon problem

    Hi,
    On my New Nokia Navigat 6710 when i'm on the home screen with all the icons, at the top right part of the screen there is a flashing envelope. It is next to the bluetooth icon.
    I've tried everything to get rid of it but nothing is working.
    Anyone know what is wrong?
    Thanks.

    Hi,
    In such situation, basicly the reason is that messaging memory (which is phone memory by default) was full already. As such, pls try the following steps:
    - Reboot the phone and power up again after 15 mins (remove the battery, sim card and MMC abt 15 mins)
    - Delete outbox messages in Inbox, Outbox, Sent item...  (all messages if there are a lot)
    - Delete personal data (videos, songs, images, apps...), plus call logs, sms logs, packet data logs, caches, to set the memory free: 
    + Menu > Log > Recent calls > Options > Delete recent calls
    + Menu > Log >  Call duration > Options > Clear timers
    + Menu > Log > Packet data > Options > Clear counters
    + Menu > Internet > Web > Options >Clear privacy data > Delete Cache and Delete Cookie
    - View and copy all Sim messages into phone: Menu > Messaging > Options > Sim message > Options > Mark/Unmark > Marl all > Options > Copy. A list of folders open --> select a folder > copy.
    - To continue, delete sim messages: Menu > Messaging > Options > Sim message > Options >Mark/Unmark > Mark all> Options > Delete
    - Select MMC to be used as memory for Messaging app: Menu > Messaging > Options > Settings > Other > Memory in use > slect the MMC (if any)
    - If the above steps can not help, you are advised to do the factory settings on the phone:
    Menu > Settings> Settings> General > Factory settings > Lock code (12345 by default)
    Pls let me know whether it works or not. Tks

  • 6110 Navigator - WAP CSD problem

    I have the properly set connection to wap (using dialing) - number, user, password, proxy ip, data bearer, ... everything is set correctly but phone does not even start calling the operator. Everything's fine with my older SE and 6100.

    My operator confirmed the correct settings in the phone, but they told me that the newest Nokia phones are not supporting CSD connections (event those could be configured) - so anybody has some experience with T-Mobile (SK) and CSD?

Maybe you are looking for

  • Color Laserjet pro MFP M176n control panel not working

    the control panel in the Color Laserjet pro MFP M176n is not working, is all blank, i can´t see anithhing in it. Is there a reset button or should i take it to the store where i buy it for a checkup? thank you

  • RDS Focus issue with Windows 8.1

    This is quite infuriating. I never post on here, so for me to be doing so, trust me, is basically as a last resort. I work for a s/w company, and we have two options w the app- local installation, or cloud, utilizing RDS. Our work database is (obviou

  • How to send the data to SQL server group in Reciever JDBC scenario

    Hi Experts, I have done IDOC to JDBC scenario, the data is successfully going to SQL server in reciever side, but in reciever side they got local server and other server groups also there, the data ia m sending is going to local server group, so wher

  • Not able to save more than 2000 characters

    Databse - SQL server 2000 I am using jdbc to save some text in sql server 2000 database. column is of type ntext. If text is more than 2000 character, i am getting an error. I tried changing the connection setting to sendstringparameterasunicode=fals

  • Macbook Pro 1.83ghz Core Duo - Boot Disks

    Hello. I have misplaced my startup disk. Any chance I could paypal someone some money in order to get a burned copy mailed to me? The apple store doesn't have any. Thanks! Tom