Help this poor guy

Hi Herewith I have enclosed the code.. I am not sure where i am going wrong..moreover i am very new to this technologies.. i need to finish this by tonight.. anyone helps that will be great..
here is my problem.. i need to check a rebate id which exists in the database.. if it exists I have to update the value and if doesn't exits i have to insert a new row..
My jsp will contails 10 rows.. Once after submit.. I have to check with the database whetehr that rebate_sku_num exits.. if exits i need to update that row.. if not i have to insert a new record.. here is my code.. please give some solution.. thanks
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import javax.servlet.SingleThreadModel;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import java.io.IOException;
import java.sql.ResultSet;
import java.io.*;
import java.util.*;
import java.util.Date;
import java.text.*;
public class AddRebate extends HttpServlet implements SingleThreadModel {
public void init(ServletConfig servletconfig) throws ServletException {
super.init(servletconfig);
public void doPost(HttpServletRequest httpservletrequest, HttpServletResponse httpservletresponse)
throws ServletException, IOException {
HttpSession session;
session = httpservletrequest.getSession(true);
String user_name;
String divisionCode;
String rebate_sku_num[];
String selectedMonth;
String amount[];
String message = "";
String Query="";
String RebateId="";
boolean flag = true;
// from here
Calendar todaysdate = new GregorianCalendar();
SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
SimpleDateFormat sdf1 = new SimpleDateFormat("MM/dd/yyyy HH:MM:SS");
System.out.println("today's date: " + sdf.format(todaysdate.getTime()));
String entryDate = sdf.format(todaysdate.getTime());
String entryDate1 = sdf1.format(todaysdate.getTime());
System.out.println("entering date is " +entryDate) ;
System.out.println("entering date is " +entryDate1) ;
// to here
user_name = (String) session.getAttribute("user_name");
divisionCode = (String) session.getAttribute("division_code");
selectedMonth = httpservletrequest.getParameter("selectedMonth");
rebate_sku_num = httpservletrequest.getParameterValues("rebateId");
amount = httpservletrequest.getParameterValues("amount");
System.out.println("AddRebate : doPost() : selectedMonth = " + selectedMonth);
System.out.println("AddRebate : doPost() : rebate_sku_num = " + rebate_sku_num);
System.out.println("AddRebate : doPost() : amount = " + amount);
flag =true;
if (flag) {
// from here
try {
String s = "select REBATE_SKU_NUM from EASMSA_REBATE_SKU_DETAILS_TB";
System.out.println("AdjustmentServlet : doGet() : getting maximum adjustment ID query : " + s);
ResultSet resultset = DatabaseConnection.executeQuery(s);
if (resultset != null) {
while (resultset.next()) {
RebateId = resultset.getString("REBATE_SKU_NUM");
System.out.println("the REBATE_SKU_NUM is " + RebateId);
}else{
System.out.println("AdjustmentServlet : doGet() : getting maximum adjustment ID : resltset is null " );
} catch (Exception exception1) {
System.out.println("AdjustmentServlet : doGet() : exception in getting max of adjustment id");
exception1.printStackTrace();
// to herer
for (int i = 0; i < rebate_sku_num.length; i++) {
if ((rebate_sku_num != RebateId)) {
System.out.println("get the values" +rebate_sku_num);
System.out.println("get the values" + RebateId);
Query = "INSERT INTO EASMSA_REBATE_SKU_DETAILS_TB " +
"( REBATE_SKU_NUM, REBATE_DATE, REBATE_AMT, CREATED_BY," +
"CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE ) VALUES (" +
"'" + rebate_sku_num + "', " +
"TO_Date( '" + "30/" + selectedMonth + "', 'dd/MM/YYYY HH:MI:SS AM'), " +
"'" + amount + "' , '" + user_name + "'" +
", TO_Date( '" + entryDate + "', 'MM/dd/YYYY HH:MI:SS AM')" +
", '" + user_name + "'," +
" TO_Date( '" + entryDate + "', 'MM/dd/YYYY HH:MI:SS AM'))";
System.out.println("query is executed" +Query);
}else if ((rebate_sku_num == RebateId )){
Query = "update EASMSA_REBATE_SKU_DETAILS_TB set REBATE_AMT=" + amount + " where REBATE_SKU_NUM='" + rebate_sku_num + "'";
System.out.println("query is executed for updation" +Query);
try {
if (DatabaseConnection.executeUpdate(Query) == 0) {
System.out.println(" AddRebate : doPost() : rollback: error in executing update query= " + Query);
DatabaseConnection.rollBack();
message = "Some problem in updating transactions. Please try again later.";
flag = false;
break;
} else {
System.out.println("AddRebate : doPost() : update sucessfull");
message = "Rebate Transactions has been updated.";
flag = true;
} catch (Exception ex) {
System.out.println("AddRebate : doPost() : exception in update query");
message = "Some problem in updating transactions. Please try again later.";
flag = false;
ex.printStackTrace();
session.setAttribute("message", message);
httpservletresponse.sendRedirect("Welcome1.jsp?s=y");
return;

Hi Here my code is, I am able to add one by one records... but if the record is there still it is trying to inser and throwing some execption. Because that rebate_sku_num is the primary key..
I want to add multiple records.. by cecking rebate_sku_num is present in the table or not. It is not I need to insert a new row.. else I need to update the record.
Thanks
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import javax.servlet.SingleThreadModel;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import java.io.IOException;
import java.sql.ResultSet;
import java.io.*;
import java.util.*;
import java.util.Date;
import java.text.*;
public class AddRebate extends HttpServlet implements SingleThreadModel {
    public void init(ServletConfig servletconfig) throws ServletException {
        super.init(servletconfig);
    public void doPost(HttpServletRequest httpservletrequest, HttpServletResponse httpservletresponse)
            throws ServletException, IOException {
        HttpSession session;
        session = httpservletrequest.getSession(true);
        String user_name;
        String divisionCode;
        String rebate_sku_num[];
        String selectedMonth;
        String amount[];
        String message = "";
        String Query="";
        String RebateId=""; 
        boolean flag = true;
        Calendar todaysdate = new GregorianCalendar();
        SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
        SimpleDateFormat sdf1 = new SimpleDateFormat("MM/dd/yyyy HH:MM:SS");     
        System.out.println("today's date: " + sdf.format(todaysdate.getTime()));
        String entryDate = sdf.format(todaysdate.getTime());
        String entryDate1 = sdf1.format(todaysdate.getTime());
        user_name = (String) session.getAttribute("user_name");
        divisionCode = (String) session.getAttribute("division_code");
        selectedMonth = httpservletrequest.getParameter("selectedMonth");
        rebate_sku_num = httpservletrequest.getParameterValues("rebateId");
        amount = httpservletrequest.getParameterValues("amount");
        System.out.println("AddRebate : doPost() : selectedMonth = " + selectedMonth);
        System.out.println("AddRebate : doPost() : rebate_sku_num = " + rebate_sku_num);
        System.out.println("AddRebate : doPost() : amount = " + amount);
   flag = true;
        for (int z = 0; z < rebate_sku_num.length && flag; z++) {
            try {
                     flag=false;
                String s = "select REBATE_SKU_NUM from EASMSA_REBATE_SKU_DETAILS_TB where REBATE_SKU_NUM ='" + rebate_sku_num[z] + "'";
                System.out.println("AdjustmentServlet : doGet() : checking sku validity query  = " + s);
                ResultSet resultset = DatabaseConnection.executeQuery(s);
                if (resultset != null) {
                    while (resultset.next()) {
                        RebateId = resultset.getString("REBATE_SKU_NUM");
                        flag = true;
        if ((rebate_sku_num[z] != RebateId)) {
                System.out.println("get the values" +rebate_sku_num);
                 System.out.println("get the values" + RebateId);
                   Query = "INSERT INTO EASMSA_REBATE_SKU_DETAILS_TB " +
                            "( REBATE_SKU_NUM, REBATE_DATE, REBATE_AMT, CREATED_BY," +
                            "CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE ) VALUES (" +
                            "'" + rebate_sku_num[z] + "',  " +
                            "TO_Date( '" + "30/" + selectedMonth + "', 'dd/MM/YYYY HH:MI:SS AM'), " +
                            "'" + amount[z] + "' , '" + user_name + "'" +
                            ",  TO_Date( '" + entryDate + "', 'MM/dd/YYYY HH:MI:SS AM')" +
                            ", '" + user_name + "'," +
                             "  TO_Date( '" + entryDate + "', 'MM/dd/YYYY HH:MI:SS AM'))";
                    System.out.println("query is executed" +Query);
              }else if ((rebate_sku_num[z] == RebateId )){
                   Query = "update EASMSA_REBATE_SKU_DETAILS_TB set REBATE_AMT=" + amount[z] + " where REBATE_SKU_NUM='" + rebate_sku_num[z] + "'";
                   System.out.println("query is executed for updation" +Query);
                } else {
                    System.out.println("AdjustmentServlet : doGet() : checking for sku validity : resultset null");
                   // message = "SKU '" + sku[z] + "' of customer '" + customer[z] + "' and location '" + location[z] + "' is not valid.";
                    message = "SKU '" + rebate_sku_num[z] + "' is not valid.";
                    flag = false;
            } catch (Exception exception1) {
                System.out.println("AdjustmentServlet : doGet() : exception in checking validity of SKU");
                exception1.printStackTrace();
              //  message = "SKU '" + sku[z] + "' of customer '" + customer[z] + "' and location '" + location[z] + "' is not valid.";
               message = "SKU '" + rebate_sku_num[z] + "' is not valid.";
                flag = false;
               try {
                    if (DatabaseConnection.executeUpdate(Query) == 0) {
                        System.out.println(" AddRebate : doPost() : rollback: error in executing update query= " + Query);
                        DatabaseConnection.rollBack();
                        message = "Some problem in updating transactions. Please try again later.";
                        flag = false;
                       // break;
                    } else {
                        System.out.println("AddRebate : doPost() : update sucessfull");
                        message = "Rebate Transactions has been updated.";
                        flag = true;
                } catch (Exception ex) {
                    System.out.println("AddRebate : doPost() : exception in update query");
                    message = "Some problem in updating transactions. Please try again later.";
                    flag = false;
                    ex.printStackTrace();
        session.setAttribute("message", message);
        httpservletresponse.sendRedirect("Welcome1.jsp?s=y");
        return;
[/code]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • I can't forcequit firefox and shutdown my computer, nor can I open up any other programs or applications. Does anyone know how to fix this? please help this poor soul.

    I can't forcequit firefox and shutdown my computer, nor can I open up any other programs or applications. Does anyone know how to fix this? please help this poor soul.

    You can force quit applications
    >Force quit
    if that does not work you can force quit a computer shut down by hold the power button for an extended period.

  • Is there an emailing function I can use in Flex? Help this poor noob.

    My boss just gave me a Flex project that displays a database worth of data in the browser. After making a selection (a selection counts as picking any number of columns or rows), a user can right click on the table where the selection was made and click the "Email Selected" menu option on the right click menu. This has all been done for me.
    My job is to take all the selected rows (irrespective of what columns have been selected) and take their "E-mail" field (i.e.,  the address that is in the column called "Email") and send an email to all these addresses (populate the BCC field with the email addresses), I guess in their default email client. Right now all that happens is a pop up comes up (similar to the JavaScript Alert) that says "Lets email these guys!" and I am supposed to make it a mailto popup. Any ideas? I am a complete novice in every respect to Flex and Flash programming, so saying I am in over my head right now is an understatement.
    I would really, really, really appreciate any help with this.
    (If you need more info on what it is that I am doing, please don't hesistate to ask for a clarification)
    EDIT #1: After some researching it turns out I am working with a datagrid and I just tried using the selectedIndex property of the datagrid that I am working off, but it only returns the row of the first selected row of the multirow selection. How would I know the row number of the first and last row selected?

    There is a tutorial here on using APA format with Microsoft Word on a Mac:
    http://www.youtube.com/watch?v=IAhHWNcU3vM

  • I really need help from anyone willing to help a poor guy out

    I have installed and uninstalled adobe and all of its components. I dont get any sound or video out of anysites at all. I even reinstalled windows xp pro to try and fix the problem. I have done allot of things posted and have come up empty handed. I am seriously frustrated. I have everthing up to date and atill no luck. I get sound and video on my desktop players and anything else off line please help me.

    To better assist you with this issue we need to know:
    What is your operating system? (Windows or Mac) (XP, Vista, 7, 8)
    What browser do you use? (Internet Explorer, Firefox, Chrome, Opera, Safari)
    Are you seeing any error messages?
    Can you provide screenshots of the error messages (if applicable)?

  • Help This Poor Computer Illiterate Child

    I cannot open online documents! I was able to do so up until approximately 45-60 days ago, but now it opens to a dark grey screen. Another issue I have been experiencing is a pop-up that reads:
    Runtime Error!
    Program:C:\Program Files\Adobe\Reader 10.0\Reader\AcroRd32.exe
    This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information.
    I don't know what I've done, and it's driving me nuts! Please Help!
    Dave

    What OS is your computer running on?
    Suggestion is that uninstall and reinstall the program!

  • Help a Poor Guy with a Broken Keyboard

    Hi Everyone!
    I was wondering if someone could help with a workaround for a problem I have: Certain keys on my netbook keyboard stop working, seemingly at random (if anyone knows why this could be, I'm all ears).
    I'm trying to use fluxbox keys to use a shortcut to send a keystroke, for example 'Control' and '3' to send 'e' or 'Control' and 'd' to send 'c'.
    Is there a command/package that can do this?
    I did google for a while but I don't really know what to search for.
    -Coire

    Hi,
    I don't use fluxbox and I don't know if it determines something.
    But you can use xmodmap to remap keys and combinations.
    With xev you can press the keys and know the keycode to use for xmodmap
    E.g.
    xmodmap -e 'keycode 56 = Control_L'
    xmodmap -e 'keycode 64 = AudioUp'

  • Hello am dominic and i want a help from you guys out there i hope you will be able to help me out...i have an i phone which i bought from a friend but it has this i cloud account i wanna know if you can help me wipe it so i can usse it..thanks

    hello am dominic and i want a help from you guys out there i hope you will be able to help me out...i have an i phone which i bought from a friend but it has this i cloud account i wanna know if you can help me wipe it so i can usse it..thanks

    Only your friend can unlock it, either by giving you his Apple ID and password, or by removing it from his list of devices - please see:
    http://support.apple.com/kb/TS4515
    There is no way at all it can be unlocked without his doing this.

  • Hi all I am from India,I purchased whatsapp application on14th July for Rs.55 but they charged me Rs.60 for that and also yesterday again they charged Rs.55 for the same app..what should I do??Please help me out guys..

    Hi all I am from India,I purchased whatsapp application on14th July for Rs.55 but they charged me Rs.60 for that and also yesterday again they charged Rs.55 for the same app..what should I do??Please help me out guys..

    Have you added or changed your credit card details on your iTunes account ? If you have then each time that you do so a small temporary store holding charge (the Rs 60) may be applied to check that the card details are correct and valid and that it's registered to exactly the same name and address as on your iTunes account - it should disappear off your account within a few days or so.
    Store holding charge : http://support.apple.com/kb/HT3702
    For the second charge for 55, you used the same account to re-download the app ? If you did then you can contact iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Would like to trace my ipod touch because I was robbed. I would find it please. need help from you guys. Not because I am able to get another. Thank you.

    would like to trace my ipod touch because I was robbed. I would find it please. need help from you guys. Not because I am able to get another. Thank you.

    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    iCloud: Find My iPhone
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • IPhoto library is a behemoth on my MacBook pro -- help this Mac Grandma out

    Don't laugh at me ( if you do, be really quiet about it!)
    Here's the deal: Out of fear of losing photos, I have made a monster out of my iphoto library. It now takes up 34GB of space on my MacBook Pro. There are duplicates in there and well, it's a mess. (I have ghost images of some photos, for example).
    I want to start fresh but not lose photos and data and album names. I have copied the iPhoto Library folder to DVD. I have run the backup program with iLife (to 300GB LaCie Extreme). I have even copied the iPhoto Library folder to the LaCie three times and each time renamed with the date (e.g. iPhoto Library 9/15/07; iPhoto Library 11/13/07, etc. ). Now I have so many duplicates, I don't trust the way I've used backup, and to top it all off - I have little to no space on my MacBook Pro. It's as slow as a my old Powerbook 180 running three programs at once.
    1. How do I free up the space on my MBP and yet still work on current photos in iPhoto on it and adding to my iPhoto Library without carrying around every picture (and then some) I have ever taken on my laptop. Should I start from scratch with a whole new library? Then how do I work with old photos from the older iPhoto library.
    2. What's the best way to back it up.
    3. Would iLife '08 help or would that complicate matters?
    4. Any advice on duplicates? How to I find duplicate photos, delete them, but make sure I have not lost the image and data?
    Any help would be appreciated before my MBP with 1.99 GB left crashes.
    Help this grandma out! I love Macs but I don't use them properly. Happy Holidays! Mrs. P.

    Mrs. P
    You've got a nice project to keep you busy over the xmas!
    1. You MUST first make space on the disk - you're in immediate danger of a very serious OS crash if you don't. The fastest way to do this is to move the iPhoto Library Folder to an external disk:
    1. Quit iPhoto
    2. Copy the iPhoto Library Folder as an entity from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    To deal with duplicates: check out Duplicate Annihilator
    Regards
    TD

  • I have windows 7 and every time I try to play or add a song. It says itunes has stopped working. Please help this is frustrating.

    I have windows 7 and every time I try to play or add a song. It says itunes has stopped working. Please help this is frustrating.

    a further message  box states that Data Execution Prevention has closed the program.
    Try updating your QuickTime to the most recent version. Does that clear up the DEP errors in iTunes?

  • I am unable to access any of my ebooks in adobe after I had help this morning

    I am unable to access any of my ebooks in adobe after I had help this morning

    Hi, Thank you so much for the info.... I really do appreciate it. We had the laptop updated by way of a system upgrade with RAM and an additional SSD drive. Once reconfigured all programs were reinstalled but Iphoto is not among them. Iphoto was on the laptop when purchased so we have no additional discs. Before the laptop was updated we backed the photos up to an extrenal hard drive so we have them, but cant access them. Could I purchase Iphoto 8 stll? Would this work? We would also require an external CD drive as we no longer have the disc drive in the laptop (I think the extra new bits took over). You may have noticed I have very limited knowledge on computers so any help dispite how simple it may sound to some would help me greatly. I just want all my photos back .... Thanks inadvance... Hope to hear soon x

  • Google browser and others show all web page on netbook but firefox wont i have to scrool why can i change settings on firefos to help this problem

    all other web browsers when i use on my net book show full web page but with Firefox i have to scroll side ways cant see full width of page sometimes Firefox will show full page but this is not often are the settings in Firefox to help this problem i have the latest version of Firefox 4.0.1

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • HT3951 I purchased a movie and it downloaded to my computer but it is not on my ipod and it will not sync manually. It showes upin my purchased list on ipod but not in my videos. HELP THIS IS DRIVING ME CRAZY

    I purchased a movie and it downloaded to my computer but it is not on my Ipod touch. It will not sync manually, I've tried. It shows up on my ipod as purchased but it is not in my videos. When I go to the movie from purchases it says DOW in the corner.HELP THIS IS DRIVING ME CRAZY

    Hello,
    If you have an iPod Touch you can watch movies on it.
    Did you sync the movie with iTunes between your computer and your iPod ?
    Connect iPod touch to a USB 2.0 port on your Mac or PC using the included cable.
    Follow the onscreen instructions in iTunes to set up iPod touch and sync your music, video, photos, and other content.
    Your computer must be connected to the Internet.
    By default, iTunes automatically syncs all songs and videos in your iTunes library to iPod touch. If you have more content in your library than will fit on iPod touch, iTunes alerts you that it can’t sync your content. You’ll need to use iTunes to select some of your songs, videos, and other content to sync.

  • Bought more Ram!  This little guy is IMPRESSIVE!  Where can I sell old Ram?

    I just got 2 1GB Ram chips. Anyone know where I can sell my old 512x2 chips? Thanks
    If there's no splace that specializes in it, I guess I'll just do Craigslist or Ebay, but thought I'd ask on here first.
    But I have to say I am super impressed with this little guy. I have iTunes going, Photoshop running, grabbing files from my other computer on the network, have final cut pro 6 open editing HDV footage!, have iPhoto open running through pics, MS Word 2004 open and Cabos downloading some stuff!
    And I have 644 MB of Ram left over. And everything's running really well! I am so impressed. I really never expected this from something that, well, isn't supposed to be doing all this.
    If you're in the market for this laptop, I really recommend it!

    Ram is so cheap right now it is hard to sell used RAM and get a price that makes it worthwhile.
    I always keep my old RAM. If something goes wrong with my computer and I need to trouble shoot it I sometimes place the old RAM in to rule out the new RAM as being the problem. If something happens to the new RAM and I need to send it in for warranty I can put the old RAM in and keep running.

Maybe you are looking for

  • Quicktime 7.5.5 wont Stream audio

    when i try and stream this video http://events.apple.com.edgesuite.net/0901ouabdcaw/event/index.html i get an error message saying 'Unsupported Media Type', however it worked fine on my friends PC (WINDOWS) using the same version of QuickTime. Please

  • DVD: can I extract the movie files?

    DVD: can I extract the movie files? I created a DVD (burned on DVD media). I did not archive the project since the files are too large. Can I extract the movie files from the DVD? I want to make a edit to the DVD. I know if I have the movies (clips)

  • Updateable blog containing text and pics

    Hi, I've managed to create a text box that displays text contained within a text file in the same directory as the swf. Now the user wants this to be a scrollable blog where they can add text and pics as and when they need to. Is there a way to do th

  • Migration RE classic to RE flexible

    Hi All I migrate from classic to Flexible, but when I migrate with a custom program (not REMICL) the system generate a short dump SAPSQL_ARRAY_INSERT_DUPREC (RE classic object has the same number of RE-FX object). The RE-FX table are empty but I saw

  • Error in data conversion

    Hi all I am trying to take values from a VO using public static Object evaluateEL(String el) { FacesContext facesContext = FacesContext.getCurrentInstance(); ELContext elContext = facesContext.getELContext(); ExpressionFactory expressionFactory = fac