Issue in my first JDBC pgm

Hi All,
This is my first JDBC Pgm...
I got the driver mysql driver and placed the same in the lib of the jdk...
when i compile teh java file without the Statement and Resultset it compiles fine.. but when i compile tis file,
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import javax.sql;
public class LoadDriver {
public static void main(String[] args) {
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost/employee?user=root&password=admin");
Statement stmt = conn.createStatement();
String query = "SELECT NAME FROM employee";
ResultSet rs = stmt.executeQuery(query);
while (rs.next()) {
          String s = rs.getString("COF_NAME");
          float n = rs.getFloat("PRICE");
          System.out.println(s + " " + n);
catch (Exception ex) {
// handle the error
I am gettting compile error.. sttien that unknown symbol statemetn and resultset..
Do I miss any import statemet ??
Thanks,
Udhan
I got struck here can any one help me..

No, adding the mysql driver jar to the JDK lib folder does not help. In fact, it is not a good practice to add third-party JARs to the JDK installation.
Place the JAR in some convenient location like C:\myjars. Let's assume it is renamed to mysql.jar
While executing, you need to set this JAR in the runtime classpath so that your program is able to use the driver classes.
java -cp "C:\myjars\mysql.jar;." LoadDriverThis is not an issue at compile time because you do not make use of {or import} driver specific classes anywhere in the code, but at runtime, this class needs to be available in the classpath for loading.

Similar Messages

  • Mapping issue in idoc to JDBC scenario

    mapping issue in idoc to JDBC scenario
    source structure
    E1KNB1M
      BUKRS = 1000
    E1KNB1M
      BUKRS=  9000
    E1KNB1M
      BUKRS=  2000
    THE NODE E1KNB1M is repeated many times and the field BUKRS is also repeated with E1KNB1M as above
    TARGET field : ISFRANCHISE
    if any where value of BUKRS =9000 we have to pass Y to the target filed, else N
    if BUKRS = 9000   THEN ISFRANCHISE= Y
                   ELSE
                ISFRANCHISE=N
    I've done the mapping as below
    BUKRS = 9000--> IF THEN Y ELSE N--
    > ISFRANCHISE
    BUT everry time the target value is N only
    pl suggest
    rgds
    mojib

    mapped like this
    BUKRS--->SORT---->
                                                 EQUALS --------IF---THEN    Y
    9000------------------------>                                               ----------------->ISFRANCHISE
                                                                  ELSE   N
    context of BUKRS set to parent node
    its worked
    thanks to all for valuable suggestions
    rgds
    mojib

  • HT204406 Good Morning, I' m having issues passing the first step on Itunes Match! it's been two days and itunes is still gathering information about my library! Please help! thx

    i'm having issues passing the first step on itunes match! It's been two days and itunes is still gathering information about my library! i have windows vista. Please Help!! thx

    i'm having the same problem. it's still gathering information about my library and it's been two days!! Did itunes have any solution for you guys. would appreciate a response.
    Thx    

  • Performance issues in Proxy-XI-Jdbc scenario

    Hello,
    I have developed a proxy to JDBC synchronous scenario.
    My scenario works like this.
    *i run an abap program which calls a client proxy,
    the proxy fetches the data from database table and returns the data in the ABAP program.(select query)
    there are serious performance issues when we are running the report
    it is taking around 2-5 minutes and at times multiple users are logged in , it takes around 5-20 minutes.
    it seems that most of the time is consumed in the data fetching.
    please help me to find some solution so that we can fine tune the performance on the PI side.
    Are there any options on JDBC CC which can help  us in making the queries faster
    thanks
    kannu.

    Kanu16 ,
    Issue seems to be at r/3 end..
    1. Make sur ethat report program is using select query in proper fashion .
    2. avoid using nested loops.
    3.  Hope not much validations are being done on selected data .
    Abaper can help you optimizing this .
    By debugging you can find out the exact reason behind.
    Regards ,

  • Message mapping issue in idoc to jdbc scenario

    We have a scenario of  idoc->XI-JDBC
    the below given segment may get repeated , as shown below ,
    E1EDP19[2]--idoc segment
       QUALF---003
       IDTNR---01000123(Bar Code No)
    E1EDP19[3]--idoc segment
       QUALF---003
       IDTNR---20500000000034(EAN No)
    Reqd mapping
    if QUALF=003
    THEN IDTNR----->Bar_code_Number_EAN
    Now IDTNR has to be mapped with Bar_code_Number_EAN for the segment which comes last
    Pl suggest how to map using graphical mapping for the above scenario.

    Hi Raj ,
    The current mapping works fine if the parent segment E1EDP01 is only one but if that gets repeated then the last value of IDTNR is getting populated in the target side, very clearly i m giving the source and target structure and the mapping done using the UDF
    Source structure
    E1EDP01
           E1EDP19[1]--idoc segment
                  QUALF---002
                  IDTNR---01000123(Bar Code No)
           E1EDP19[2]--idoc segment
                  QUALF---003
                  IDTNR---01000123(Bar Code No)
           E1EDP19[3]--idoc segment
               QUALF---003
               IDTNR---20500000000030(EAN No)
    E1EDP01
         E1EDP19[1]--idoc segment
                    QUALF---002
                    IDTNR---01000123(Bar Code No)
         E1EDP19[2]--idoc segment
                   QUALF---003
                   IDTNR---01000123(Bar Code No)
          E1EDP19[3]--idoc segment
                 QUALF---003
                 IDTNR---20500000000031(EAN No)
    E1EDP01
           E1EDP19[1]--idoc segment
                   QUALF---002
                    IDTNR---01000123(Bar Code No)
          E1EDP19[2]--idoc segment
                  QUALF---003
                  IDTNR---01000123(Bar Code No)
         E1EDP19[3]--idoc segment
              QUALF---003
              IDTNR---20500000000032(EAN No)
    Target mapping
    if QUALF=002
    THEN IDTNR--->Article_No this is the direct mapping so , no issues
    if  QUALF=003
    THEN IDTNR----->Bar_code_Number_EAN, now this IDTNR should get repeated every time  the segment  E1EDP01 gets repeated , currently only the last value form all the  IDTNR is coming to the target side.
    The current mapping works fine if the parent segment E1EDP01 is only one
    Target structure
    Access1
    IDTNR--> Bar_code_Number_EAN( value is 20500000000030)
    Access2
    IDTNR--> Bar_code_Number_EAN( value is 20500000000031)
    Access3
    IDTNR--> Bar_code_Number_EAN( value is 20500000000032)
    Current mapping
    If QUALF = 003
                    Then  QUALF ---->
                                                     mapBarCodeEAN---->Bar_code_Num_EAN
    If QUALF = 003
                    Then  IDTNR ---->
    Context of QUALF is set to E1EDP01
    Context of IDTNR is set to  E1EDP01
    thanks for your personalised help
    rgds
    mojib
    Edited by: mohammad mojib ur rahman on Apr 9, 2010 1:30 PM

  • Please help in my first jdbc code

    hi,
    in this code i want to get author book name from my database
    but the problem that : the compiler give error on these lines :
    statement= connection.createStatement();
    ResultSet resultset = statement.executeQuery("");
    statement.close();
    please see my code and help me
    import java.awt.Container;
    import java.beans.Statement;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.ResultSetMetaData;
    import java.sql.SQLException;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    public class DisplayAuthors extends JFrame {
        static final String JDBC_DRIVER = "";
        static final String DATABASE_URL="JDBC:db2j:library";
        private Connection connection;
        private Statement statement;
        public DisplayAuthors(){
            try{
                System.setProperty("db2j.system.home", "C:/Documents and Settings/beshoy/My Documents/NetBeansProjects/JDBC");
                Class.forName(JDBC_DRIVER);
                connection=DriverManager.getConnection(DATABASE_URL);
                statement=  (Statement) connection.createStatement();
                ResultSet resultset/*=statement.executeQuery("")*/;
                StringBuffer results= new StringBuffer();
                ResultSetMetaData metadata=resultset.getMetaData();
                int numberofcol=metadata.getColumnCount();
                for(int i=0;i<numberofcol;++i){
                    results.append(metadata.getCatalogName(i)+"\t");
                results.append("\n");
                while(resultset.next()){
                    for(int i=1;i<=numberofcol;++i){
                        results.append(resultset.getObject(i)+"\t");
                    results.append("\n");
                JTextArea area=new JTextArea(results.toString());
                Container container=getContentPane();
                container.add(new JScrollPane(area));
                setSize(300,100);
                setVisible(true);
            catch(ClassNotFoundException classnotfound){
                JOptionPane.showMessageDialog(null,classnotfound.getMessage(),"Database error",JOptionPane.ERROR_MESSAGE);
                System.exit(1);
            catch(ClassNotFoundException classnotfound){
                JOptionPane.showMessageDialog(null,classnotfound.getMessage(),"Driver not found", JOptionPane.ERROR_MESSAGE);
                System.exit(1);
            finally{
                try{
                    statement.close();
                    connection.close();
                catch(SQLException sqlexception){
                    JOptionPane.showMessageDialog(null, sqlexception.getMessage(),"Database error",JOptionPane.ERROR_MESSAGE);
                    System.exit(1);
        public static void main(String[]args){
            DisplayAuthors window=new DisplayAuthors();
            window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }thanks in advance

    beshoy wrote:
    Compiling 1 source file to C:\Documents and Settings\beshoy\My Documents\NetBeansProjects\JDBC\build\classes
    C:\Documents and Settings\beshoy\My Documents\NetBeansProjects\JDBC\src\project\DisplayAuthors.java:30: incompatible types
    found : java.sql.Statement
    required: java.beans.Statement
    statement= connection.createStatement();You declared 'statement' as java.beans.Statement instead of java.sql.Statement. The Connection#createStatement() returns java.sql.Statement, not java.beans.Statement.
    How did you miss this one in the JDBC tutorial? [http://java.sun.com/docs/books/tutorial/jdbc/index.html]
    C:\Documents and Settings\beshoy\My Documents\NetBeansProjects\JDBC\src\project\DisplayAuthors.java:31: cannot find symbol
    symbol : method executeQuery(java.lang.String)
    location: class java.beans.Statement
    ResultSet resultset = statement.executeQuery("");This one will solve itself if you fix the first error.
    C:\Documents and Settings\beshoy\My Documents\NetBeansProjects\JDBC\src\project\DisplayAuthors.java:68: cannot find symbol
    symbol : method close()
    location: class java.beans.Statement
    statement.close();This one will solve itself if you fix the first error.

  • Method first() JDBC

    Help
    i trying to put my recorset at teh firts record
    i use this connection in a jsp file
    <%
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
    Connection Con =DriverManager.getConnection("jdbc:microsoft:sqlserver://192.168.232.35;user=x;password=x");     
    String Sql= "SELECT car_id.car_dsc FROM CARS"
    CallableStatement Cs = Con.prepareCall(SqlT1);     
    ResultSet RsTabla1 =Cs.executeQuery();
    %>
    AND THEN WHEN I USE THIS INTRUCTION
    <%RsTabla1.first();%>
    THE BROWSER SEND ME THIS MESSAGE
    [SQLServer 2000 Driver for JDBC]Unsupported method: ResultSet.first
    help PLIS....
    I use this recordset and want to go to the fisrt again...

    You need to call the overloaded prepareStatement() method to get a scrollable ResultSet. If your driver does not support these, you will not be able to use the first() method. Check if you can just use the next() method in such case.

  • Issue in my first servlet ...

    HI All,
    I am new to this servlet programming..
    I start with a simple servlet pgm got compiled and placed the class file int he
    tomcat class directory,
    D:\Program Files\jakarta-tomcat-4.1.31\webapps\ROOT\WEB-INF\classes
    Here when i got installed the tomcat there is no such directory called "classes"
    in the WEB-INF directory , Then I created one and placed the class file there.
    Then I start the tomcat server.. when i got in to the browser and say
    Http://localhost:8080/servlet/MyServlet
    It throws teh page no found error can any one point out where i go wrong....
    TIA
    Udhan

    Hi Subash,
    Hi
    Thanks for your effort..But still i face teh saem issue dude..
    I extract the same in my webapps folder which overties the
    web-inf folder inside which i have the xml file and the classes dir
    inside the class dir i hav the java and the class file.
    After I started teh tomcat server and get into the page as u said'
    http://localhost:8080/test
    I got the following error ,
    HTTP Status 404 - /test
    type Status report
    message /test
    description The requested resource (/test) is not available.
    Apache Tomcat/4.1.31
    Thanks,
    Udhan

  • Permissions issue only the FIRST time I try to overwrite a file.

    I've a standard user account and I've found overwriting protected files is bugged in Leopard.
    As an example: every time I'm upgrading Camino web browser with the latest nightly build (by dragging the new version from it's disk image, and into the Applications folder) I get a permissions issue the first time only. As usual I am warned I will need to authenticate, then I am warned I will be replacing a file, then the first time only I get told I do not have sufficient privileges on one or more items to continue. The second time I try I am allowed to progress to the authentication window where I enter my admin username and password and the operation completes.
    The same thing happens with other files I'm trying to overwrite that are located in protected folders (I just use Camino as an example because it is a daily occurrence). But it ONLY happens the first time.
    This has persisted through three erases of my brand new iMac's HD and clean installations of Leopard. I have of course run Disk Utility multiple times to repair the HD (no errors found) and repair permissions (just the usual ACL errors every Leopard user faces).

    Hi,
    What's the error message did you get? It would be better to provide a screenshot for your problem.
    Generally speaking, this problem can be caused by third party adds-on of IE. You can try to start IE with no adds-on mode for test.
    Open run, type iexplore -extoff, pess
    Enter.
    If it works properly, please chck which plugin enabled in your browser, try to disable them for test.
    In addition, this can also be caused by IE settings, try to reset IE for test.
    Roger Lu
    TechNet Community Support

  • Mapping Issue for IDoc to JDBC interface

    Hi All,
      I am having problem in implementing logic in IDoc to JDBC interface where I have to filter out E1WBB07-KSCHL = VKP0.
      Source IDoc structure is like ->
    E1WBB01(occ 0 -1000)
      |-> E1WBB03 (occ 0-100)
                |-> E1WBB07(occ 0-1000)
                         |-> KSCHL
                              DATAB
                              DATBI
    Now, For each KSCHL = VKA0 there should be a duplicate VKP0 record. From these 2 records only the VKA0 should get processed and VKP0 ignored.
    Duplicates for VKP0 and VKA0 can be identified by identical DATAB and DATBI.
    Suppose, in one  E1WBB03 segment,there are 4 E1WBB07 segment having following values.
    1: KSCHL=VKP0, DATAB=20102011, DATBI=25102011
    2: KSCHL=VKP0, DATAB=26102011, DATBI=30102011
    3: KSCHL=VKA0, DATAB=26102011, DATBI=30102011
    4: KSCHL=VKP0, DATAB=01112011, DATBI=31129999
    2 & 3 are duplicates. From these, 2 should get dropped.
    As a result only 1, 3 and 4 should get  processed.
    How can I proceed with this..?...I have tried some work around but not able to do it successfully. Is a UDF required to compare DATAB and DATBI. If yes how it can be written.?
    Thnx in advance,
    Praveen.

    chk below mapping:
    change the context of DATAB, DATAB1 and KSCHL to E1WBB03 (right click-> context) in all the mappings shown below
    1)
    DATAB
    ------------concat-----sort----splibyvalue(value change)-----collapse context---TargetNode
    DATBI
    2)
    DATAB
    ------------concat-----sortbykey \
    DATBI                    /        \
    KSCHL------------/                 \
    ----------------------------------------FormatByExample----sort-----UDF1----Target KSCHL
    DATAB                                    /
    ----concat---sort--splibyvalue(value change)-
    DATBI
    3)
    DATAB
    ---concat ( ; )-----sort-splibyvalue(value change)---collapse context--splitbyvalue (each value)--UDF2---TargetDATAB
    DATBI
    4)
    DATAB
    ------------concat ( ; )-----sort----splibyvalue(value change)-----collapse context--splitbyvalue (each value)--UDF3---TargetDATABI
    DATBI
    UDF1: execution type : all values of a context...input: var1
    int a=var1.length;
    int count=0;
    if(a>=2)
    for(int i=0;i<a;i++)
    if(var1<i>.equals("VKA0"))
    count= count+1;
    else
    result.addValue(var1[0]);
    if(count>1)
    for(int i=0;i<count;i++)
    result.addValue("VKA0");
    UDF2:execution type: single value...input: var1
    String [] temp= var1.split(";");
    return temp[0];
    UDF3: execution type: single value...input: var1
    String [] temp= var1.split(";");
    return temp[1];

  • Issue with Sender Side JDBC processing

    Hello,
    I am facing some problem with Sender Side JDBC Processing.
    I am polling the DB MY SQL Server 2000 and using some SELECT statement i picked up some data and updated the DB with an UPDATE statement. At the receiver side i am using RFC adapter which takes the data from the DB and process further to SAP system.
    At sender side , i can see that the DB has been updated but in Integration Engine / Adapter Engine i could see any message related to that. So now my question is where did the message go.
    Can you please provide the inputs.
    THanks,
    Soorya

    Hi Surya,
    as u mentioned that u r unable to see ur message in IE & Adapter enigne
    pls do chk with the DB connections with XI and make sure that u choose every thing under same name space
    pls try to refersh cache
    thanx
    Sampath

  • 9.0.3 DB Navigator Issues on 3rd Party JDBC

    A new problem in 9.0.3: under System Navigator, Connections, Database Connections, we are no longer able to drill-down to schema objects (such as tables and views) for the 3rd party JDBC connection that we have been using successfully in 9.0.2.
    I have configured the 3rd party JDBC libraries under jdev.conf. I am able to connect to the database. I am even able to run a Java method to connect to and extract metadata from the database.
    The JDBC Driver for the Progress RDBMS is provided by Data Direct Technologies. It is a Type-2 JDBC driver created under the JDK 1.2. A type-3 driver will not soon be available. Also, I am running JDeveloper 9.0.3 under Windows 2000.
    We are prototyping a web extension layer using JSP to legacy systems that have Oracle, DB2, and Progress back-ends. So far, Oracle 9iAS and JDeveloper have been the favorites to implement this layer.
    However, without the schema object visibility, JDeveloper does has little use as a development tool for us. I have elaborated this problem in a previous thread, but did not get a response from Oracle.
    Someone in the JDeveloper group please respond. We really like JDeveloper and do not want to have to walk away from it because of this.

    Hello Robert,
    You have two solutions :
    1) You ask your JDBC provider for compile driver with jdk1.3+
    2) You try another driver on http://industry.java.sun.com/products/jdbc/drivers
    Can You help me with DB2 and Progress ?
    If yes send me email on [email protected]
    Thanks

  • Copy workflow issue - Only works first time

    Hello
    I created a simple "copy" workflow with SPD:  it should automatically copy to another library any new files that match a condition , as they are uploaded.  
    If Current Item:Doc Type equals JobReport
     Copy item in Current Item to Job Reports
     Stop the workflow and log File copied
    It works with the first file, then it quit working, even if disaply "Completed" in the workflow outcome field.
    Source Library is DocSet enabled, while destination library is not.
    Any idea? Thnks
    Lucio 

    After a couple of days of "try this, try that" I've concluded that the problem was caused by the <jsp:include>. As I'm learning, one must be careful when mixing JSF and ADF components, as well as how components are nested within containers.
    I was hoping there would be a way to visually develop a page fragment in one file, and then include it in another file. But I could not find a way to do this.
    What I'm doing for now is:
    1. Create a jspx file for my sub-page (so I can develop it graphically).
    2. Create a jspf fragement file, and include that in my main page using <jsp.directive.include>.
    3. copy/paste from the jspx file to the jspf file to test (but only copy the portion between the <af:form> block.
    Seems to work. I'm open to better suggestions.
    Don

  • Messages issue with the first attempt

    I've a problem every time i open Messages on my Mac and send the first message. The first attempt fails but when i try again it's all right. I reinstalled all the OS Mountain Lion again but the problem persist. ***??
    Thks.

      for the Points
    7:30 PM      Tuesday; July 2, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.4)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Minor issues with a first time Arch Install

    FInally installed Arch and now facng minor issues:
    I've installed GNOME {wanted to install KDE but that thing required 1 GB install and 2GB disksapce so went with GNOME.}
    I've added
    dbus
    to
    /etc/rc.conf
    and also added
    exec ck-launch-session gnome-session
    on the initrc file on the non root login I'd created but the darned GNOME doesn't start up at boot time.
    I have to log in with the user id and then type :
    xinit gnome-session
    each time to get GNOME working.
    Can't fiigure out the thing that I'm missing out on! Also how to setup/configure AUR? I don't seem to be able to get that thing on the Beginners Guide chalked out!
    Please help.

    I'll modify the /etc/rc.conf to make the net as a background process.
    but I'm also facing another small hurdle.
    I wanted to install MPlayer . After resolving some dependencies, I get a message saying the total download size is 8MB. When I type 'Y' to continue install, it proceeds for a while and then displays a message saying some of the files are not available.
    After a little while, when I try to install it again, I get the same message. Can you guys please help me out!
    [root@arch ashwin]# pacman -S mplayer
    resolving dependencies...
    looking for inter-conflicts...
    Targets (20): libmng-1.0.10-3 talloc-2.0.5-1 cifs-utils-4.9-3 smbclient-3.5.8-3 gpm-1.20.6-6 aalib-1.4rc5-8 giflib-4.1.6-4
    imlib2-1.4.4-1 libcaca-0.99.beta17-1 libmp4v2-1.9.1-1 faac-1.28-2 libftdi-0.18-2 libirman-0.4.5-2
    lirc-utils-1:0.9.0-2 recode-3.6-6 enca-1.13-1 libdca-0.0.5-2 a52dec-0.7.4-5 fribidi-0.19.2-1 mplayer-33159-1
    Total Download Size: 0.04 MB
    Total Installed Size: 106.70 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from extra...
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from mirrors.163.com : Not Found
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from archlinux.limun.org : Not Found
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from mirror.cse.iitk.ac.in : File unavailable (e.g., file not found, no access)
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from mirror.cse.iitk.ac.in : Not Found
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from archlinux.cbn.net.id : Connection timed out
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from mirror.unej.ac.id : File unavailable (e.g., file not found, no access)
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from ftp.yz.yamagata-u.ac.jp : File unavailable (e.g., file not found, no access)
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from ftp.yz.yamagata-u.ac.jp : Not Found
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from mirror.svk.su : No address record
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from ftp.tku.edu.tw : File unavailable (e.g., file not found, no access)
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from mirrors.easynews.com : File unavailable (e.g., file not found, no access)
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from mirrors.gigenet.com : Not Found
    error: failed retrieving file 'libftdi-0.18-2-i686.pkg.tar.xz' from ftp.gtlib.gatech.edu : File unavailable (e.g., file not found, no access)
    warning: failed to retrieve some files from extra
    error: failed to commit transaction (File unavailable (e.g., file not found, no access))
    Errors occurred, no packages were upgraded.

Maybe you are looking for

  • EditForm slown to load on IE10 and breaks IE9

    Hello, I'm having a very strange issue going into my production environment when the user tries to edit an item of a quite big list. So here is the scenario: 1)There is a task list with almost 10.000 items; 2) When the user tries to edit any item of

  • Need to include Structures in SAP Query

    Hi, I need to extract data of material master from a 3.1 System, where there is a Structure which contains my required information. How can i include the fields of the Strucutre into my query? thanks, Chintan

  • Missing Nokia apps after upgradeon X3-02

    hello, Had bought a X3-02 2 weeks ago. Did a firmware upgrade yesterday to V05.32. After the upgrade, found that the OVI and all other pre-installed NOKIA apps are missing (facebook, twitter, IM...). Could not figure out how to recover them after sea

  • HELP: move all automation - how?

    Hi Need a little help. I've had to rework a track, including a load of structural changes. Somehow my automation preferences had changed, and no automation data has been moved with regions. As a result pretty much all my automation data (lots of it)

  • I have updated to Maverick on my Mac and now the thumbnails are tiny in Photoshop what can I do

    I  have updated to Maverick on my Mac and now the thumbnails are tiny in Photoshop what can I do about it as they are so small I cannot see them.