FPC Bench, Database API and a lot more...

FPC Bench is a FREE java benchmark to test and compare the performance of a phone with others phones.
FPC Bench is a complete test tool to test performance and features.
- CPU/Memory benchmark (single threaded and multi threaded)
- NetMeter benchmark (GPRS, EDGE, UMTS, HSDPA speed)
- Check for total heap memory size
- Check for free heap memory size
- Check for full screen's maximum resolution in a Java canvas
- Check for double buffering
- Check for RMS size
- Check for RMS speed (external/internal memory speed)
- Check for your internet connection speed
- Check for available profile/configuration
- Check for the latest APIs:
JSR 75: File System access API.
JSR 82: Bluetooth/OBEX API.
JSR 118: Mobile Information Device Profile API.
JSR 120: Wireless Messaging API (WMA 1.1).
JSR 135: Multimedia API (MMAPI)
JSR 139: Connected Limited Device Configuration 1.1
JSR 172: Wev service specification.
JSR 177: Security and Truste Services API.
JSR 179: Location API.
JSR 180: SIP API.
JSR 184: Mobile 3D Graphics.
JSR 185: Java Tech for Wireless Industry API.
JSR 205: Wireless Messaging API (WMA 2.0).
JSR 209: Advanced graphics and user interface.
JSR 211: Content Handler API.
JSR 226: Scalable 2D vector graphics for JavaME.
JSR 229: Payment API.
JSR 234: Advanced Multimedia API.
JSR 238: Mobile internationalization API.
JSR 239: Java binding for OpenGL ES.
JSR 248: MSA Umbrella.
JSR 248: Fully featured MSA.
JSR 256: Mobile Sensor API.
JSR 257: Contactless communication API.
This application runs on all Java Micro Edition MIDP platforms.
We have a big database where you can check if a phone supports an API simply by filtering our database with the api of your interest.
Please help us enlarging our results database by sending us your results directly from FPC Bench using Internet or SMS.
Sending results by Internet is really cheaper than a normal SMS.
You can find more info about our project here:
http://www.dpsoftware.org
Message was edited by:
overtheclock

FPC Bench is a FREE java benchmark to test and compare the performance of a phone with others phones.
FPC Bench is a complete test tool to test performance and features.
- CPU/Memory benchmark (single threaded and multi threaded)
- NetMeter benchmark (GPRS, EDGE, UMTS, HSDPA speed)
- Check for total heap memory size
- Check for free heap memory size
- Check for full screen's maximum resolution in a Java canvas
- Check for double buffering
- Check for RMS size
- Check for RMS speed (external/internal memory speed)
- Check for your internet connection speed
- Check for available profile/configuration
- Check for the latest APIs:
JSR 75: File System access API.
JSR 82: Bluetooth/OBEX API.
JSR 118: Mobile Information Device Profile API.
JSR 120: Wireless Messaging API (WMA 1.1).
JSR 135: Multimedia API (MMAPI)
JSR 139: Connected Limited Device Configuration 1.1
JSR 172: Wev service specification.
JSR 177: Security and Truste Services API.
JSR 179: Location API.
JSR 180: SIP API.
JSR 184: Mobile 3D Graphics.
JSR 185: Java Tech for Wireless Industry API.
JSR 205: Wireless Messaging API (WMA 2.0).
JSR 209: Advanced graphics and user interface.
JSR 211: Content Handler API.
JSR 226: Scalable 2D vector graphics for JavaME.
JSR 229: Payment API.
JSR 234: Advanced Multimedia API.
JSR 238: Mobile internationalization API.
JSR 239: Java binding for OpenGL ES.
JSR 248: MSA Umbrella.
JSR 248: Fully featured MSA.
JSR 256: Mobile Sensor API.
JSR 257: Contactless communication API.
This application runs on all Java Micro Edition MIDP platforms.
We have a big database where you can check if a phone supports an API simply by filtering our database with the api of your interest.
Please help us enlarging our results database by sending us your results directly from FPC Bench using Internet or SMS.
Sending results by Internet is really cheaper than a normal SMS.
You can find more info about our project here:
http://www.dpsoftware.org
Message was edited by:
overtheclock

Similar Messages

  • After updating ios on my iphone 5 to 7.0.2, some aps as facebook, whatsapp and a lot more do not start any more. It is impossible to login or connect.

    after updating ios on my iphone 5 to 7.0.2, some aps as facebook, whatsapp and a lot more do not start any more.
    In Facebook e.g. it is impossible to login or connect.

    Hello rvdrvd,
    If you are having issues with your apps, check out the general troubleshooting for apps downloaded.
    iOS: Troubleshooting apps purchased from the App Store
    http://support.apple.com/kb/TS1702
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Anybody know how to read "xerces"?? and a lot more......

    And, what's the relationship between xerces and sun's JAXP? Is jaxp more a interface less an implementation? I found jaxp calls some part of xerces pack. Meanwhile, in xerces pack there sits a jaxp pack. Xerces say it support jaxp, so, is that mean xerces is a implementation of jaxp interface?
    Both of the two pack contains some implementation..... I'm confused.
    Can anybody give me an insider's view of jaxp package?
    "The SAX Plugability classes allow an application programmer to provide an implementation of the
    org.xml.sax.DefaultHandler API to a SAXParser implementation and parse XML documents. As the parser processes the XML document, it will call methods on the provided DefaultHandler."
    ------from jaxp1.2 spec
    I'm sorry but English isn't my mother tongue. I'm rather confused by the statements above. Anybody do me a favour to translate it to plain English? Very much thanks.
    Also, what does the following code mean? (from javax.xml.parser.SAXParserFactory.java)
    class FactoryFinder is in nowhere to be found. Can anybody help explain it?
        public static SAXParserFactory newInstance()
            throws FactoryConfigurationError
            try {
                return (SAXParserFactory) FactoryFinder.find(
                    /* The default property name according to the JAXP spec */
                    "javax.xml.parsers.SAXParserFactory",
                    /* The fallback implementation class name */
                    "org.apache.crimson.jaxp.SAXParserFactoryImpl"); //what's this??
            } catch (FactoryFinder.ConfigurationError e) {
                throw new FactoryConfigurationError(e.getException(),
                                                    e.getMessage());
        }Moreover, what the relation between SAXParserFactoryImpl and SAXParserFactory?
    I wrote a program to validate xml files against dtd or schema. Does the package automatically find dtd or schema files within the xml or i have to offer them in the command line? In my case, it seems to be the latter.

    Well, you see, my real problem is that i coded to validate a xml file against xsd or dtd. However, I have to feed the program with a dtd or xsd file in the command line to make it work. Isn't it supposed to find out a proper dtd/xsd in the xml file(when specified)? Or I it isn't properly configured?
    Help me, please!
    Here is the code:
    package xmltool;
    import javax.xml.parsers.*;
    import org.xml.sax.*;
    import org.xml.sax.helpers.*;
    import java.io.*;
    * This class validate a xml file against its DTD or Schema.
    * @version 1.1
    * @auther Data Zoe
    public class Check extends DefaultHandler
        /** Constants used for JAXP 1.2 */
        static final String JAXP_SCHEMA_LANGUAGE =
            "http://java.sun.com/xml/jaxp/properties/schemaLanguage";
        static final String W3C_XML_SCHEMA =
            "http://www.w3.org/2001/XMLSchema";
         public static void main(String args[])throws Exception
              //tag varible
              boolean dtdValidate = false;
              boolean xsdValidate = false;
              //xml file to be validated
              String fileName = null;
              //Check input
              for(int i=0;i<args.length;i++)
                        if(args.endsWith(".xml")||args[i].endsWith(".XML"))
                             fileName = args[i];
                        else if(args[i].endsWith(".xsd")||args[i].endsWith(".XSD"))
                             xsdValidate = true;
                        else if(args[i].endsWith(".dtd")||args[i].endsWith(".DTD"))
                             dtdValidate = true;
                        else
                                  System.err.println("Out put usage infomation.");
              if(fileName!=null)
                   SAXParserFactory spf = SAXParserFactory.newInstance();
                   spf.setNamespaceAware(true);
                   spf.setValidating(dtdValidate||xsdValidate);
                   SAXParser saxParser = spf.newSAXParser();
                   XMLReader xmlReader = saxParser.getXMLReader();
                   xmlReader.setContentHandler(new Check());
                   xmlReader.setErrorHandler(new myErrorHandler(System.err));
                   xmlReader.parse(fileName);
                   if (xsdValidate)
                        try     {saxParser.setProperty(JAXP_SCHEMA_LANGUAGE, W3C_XML_SCHEMA);}
                        catch (SAXNotRecognizedException x)
                                  // This can happen if the parser does not support JAXP 1.2
                                  System.err.println(
                                       "Error: JAXP SAXParser property not recognized: "
                                       + JAXP_SCHEMA_LANGUAGE);
                                  System.err.println(
                                       "Check to see if parser conforms to JAXP 1.2 spec.");
                                  System.exit(1);
              else
                   System.err.println("No xml file to validate");
         * Error handler
         private static class myErrorHandler implements ErrorHandler
              /** Error handler output goes here */
              private PrintStream out;
              myErrorHandler(PrintStream out)
                   this.out = out;
              * Returns a string describing parse exception details
              private String getParseExceptionInfo(SAXParseException spe)
                   String systemId = spe.getSystemId();
                   if (systemId == null)
                        systemId = "null";
                   String info = "URI=" + systemId +
                        " Line=" + spe.getLineNumber() +
                        ": " + spe.getMessage();
                   return info;
              // The following methods are standard SAX ErrorHandler methods.
              // See SAX documentation for more info.
              public void warning(SAXParseException spe) throws SAXException
                   out.println("Warning: " + getParseExceptionInfo(spe));
              public void error(SAXParseException spe) throws SAXException
                   String message = "Error: " + getParseExceptionInfo(spe);
                   throw new SAXException(message);
              public void fatalError(SAXParseException spe) throws SAXException
                   String message = "Fatal Error: " + getParseExceptionInfo(spe);
                   throw new SAXException(message);

  • Return value from database function taking a lot more time than the query

    Hi guys,
    I have a Query that does a call to a database function. The function takes in a few parameters and returns a Date. Now, the query within the function takes barely .05 seconds. However, doing a select get_join_dates from dual is taking almost 6 seconds for each call.
    Here is the Query:
    select s.student_id, s.student_name, s.organization_code
    from   student s
    where  s.student_id = :p_student_id
    and    s.student_enrollment_date = get_join_dates( :p_year,
                                                       :p_month,
                                                       :p_student_id,
                                                       s.organization_code );And here is the database function. The select inside this function barely takes 0.05 seconds per call. This function gets called 3 times in my case as there are 3 records in the org_body table for this student.
    create or replace function
    get_join_dates( p_yyyy in org_body.fiscal_yyyy%type,
                           p_month in  org_body.fiscal_mm%type,
                           p_student_id in student.student_id%type,
                           p_organization_code in org_body.organization_code%type) return date as
        t_enrollment_date  date;
        cursor cur_latest_enrollment_date is
          select max(enrollment_date)
          from   org_body
          where  fiscal_yyyy = p_yyyy
          and    fiscal_mm = p_month
          and    student_id = p_student_id
          and    organization_code = p_organization_code;
      BEGIN
        open cur_latest_enrollment_date ;
        fetch cur_latest_enrollment_date into t_enrollment_date;
        close cur_latest_enrollment_date ;
        return t_enrollment_date;
      exception
        when others then
          null;
    end;owever, when I run the following statement below, it takes close to 6 seconds to retrieve a record. In turn, my Query is becoming really slow and taking almost 35 seconds. Imagine that with more records.
    select get_join_dates( 2010, '01', '2167543', 'PSYCH01' ) from dual;If I run my query with this condition below, it takes 0.5 seconds.
    select s.student_id, s.student_name, s.organization_code
    from   student s
    where  s.student_id = :p_student_id
    and      s.student_enrollment_date = '01-JAN-10'Any ideas would be greatly appreciated.

    Any reason why you are doing this with the stored function?
    You could just do this with SQL. Embed the query in the function as a subquery in your initial query from STUDENT.
    select s.student_id, s.student_name, s.organization_code
    from   student s
    where  s.student_id = :p_student_id
    and    s.student_enrollment_date =
    (select max(enrollment_date)
          from   org_body
          where  fiscal_yyyy = :p_year
          and    fiscal_mm = :p_month
          and    student_id = s.student_id
          and    organization_code = s.organization_code);Why your function is not performing: I cannot say that with the information you have provided.
    Maybe sqltrace a call and see what the reason is.

  • Apps are crashing and a lot more

    I got my my ipad in June and it has never given me a problem. Now after the new update with IOS 4.2 all apps crash after opening, ipad randomly restarts. I have restored my ipad from beginning and also restore it from stratch. I do not know what to do now. can someone please give me and idea on what to do to fix this.

    which apps are crashing? a lot of 3rd party developers haven't had a chance to update their apps yet. If you want to know if others are experiencing the same problem, go to iTunes app or iTunes store on desktop --> search for the app and then look at Reviews or Ratings section or whatever and see if other users are running into the same issues.

  • Windows 8.1 Networking and a lot more

    Where do I start? I've been redirected here from the Windows Community site by Microsoft as I guess it's too complicated for them. Since updating to 8.1 the other day, networking is erratic to nonfunctional. Some of the issues:-
    1. I cannot connect to my NAS which is using Windows Home Server unless I reboot the laptop.
    2. Networking says I'm using a router that I got rid of months ago. Even after it finally said it was using my Asus router, next reboot it reverted to the old one. When you hover the mouse over the wireless network indicator on the bottom control bar it
    says the old router, when you right click to get connects it says the new one is connected!
    3. Windows Firewall will not recognise my security software (Panda) and give a warning even though Action Center does and says everything is fine. Can it be a firewall issue Windows 8.1 is imagining?
    4. Sometimes I have to reboot to get an internet connection. At the moment said controlbar wireless icon is saying I'm not connected but I am.
    5. I can't join my home group, 3 pc's and laptops using Windows 7, thank God. They work fine, just the Windows 8.1 is on its own, an outcast!
    Oh Lord, why can't I go back to Windows 8.0 even?

    Hi,
    I have been able to set up a homegroup with Windows 7 SP1, and joined a Windows 8.1 PC in that group successfully. from what have been disscussed above, I suspect your Windows 8.1 PC can't join homegroup is most probably caused by the
    network issue. So we might first take a try to solve the network issue.
    We might first start with the link below:
    Wired and wireless network problems
    Also please take a try to delete the wireless network profiles and then reconnect the network, then check the results:
    Manage wireless network profiles
    The homegroup link provided showed the reasons why can't join homegroup in I can't create, join, or use a homegroup. In addition to the network aspects, please also take a check with the others.
    Best regards
    Michael Shao
    TechNet Community Support

  • Lines lines lines and a lot more lines

    when i boot my imac g5 up their are 7 lines on it. i am able to see the screen. the lines did not show up when doing a screen capture. HELP! HELP! HELP! HELP! HELP! HELP! HELP!

    Are the lines horizontal or vertical? If vertical you may have a common flaw that Apple will fix out of warranty (if under warranty take it in asap). Call Apple and ask for a product specialist & explain the problem. this is common for 2006 20" iMacs. see this strand:
    http://discussions.apple.com/message.jspa?messageID=8596225#8596225

  • I can't open any of apps that already in my macbook pro such as App Store,iMovie,calendar and lot more . How do I solve this problems? help me please..

    When I click some of the apps that already in my Macbook Pro since the first time I bought this , it show up at the docks but in the next seconds it disappear and the apps won't opened . the apps that can't be opened are App Store , iMovie , PhotoBooth , Calendar , iBooks and lot more . I just use my macbook for just a week and I'm still new on macbook . help me please to solve this

    Please what, if any, error messages are displayed after the apps quit.

  • Lately I've been importing photos from my iPhone and when I attempt to edit them they seem to disappear.  Some reappper as a photo stream pic (some as the edited version and some not).  But they no longer appear as a recent import.  Lots more happens

    Lately I've been importing photos from my iPhone to iPhoto and when I attempt to edit them they seem to disappear.  Some reappper as a photo stream pic (some as the edited version and some not).  But they no longer appear as a recent import.  Lots more happens and I'm wondering if it's because I have a 5-year old Mac book or iPhoto is having issues.  I'm not happy with disappearing photos especially after I've deleted them from my iphone after importing them to my macbook.
    Has anyone experienced similar difficulties and what can I do?

    Remember: we cannot see your machine. There are 9 different versions of iPhoto and they run on 8 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS.  So to get help you need to give as much information as you can. Basic things like :
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For instance: 'iPhoto won't export' is best explained by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted?
    - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • I use itunes on a Dell XPS502 with W7/64. In some cases have have problems to import CD's. The sound is very disturbed and the import need a lot more time than in normal cases. Is there a problem between itunes W7/64 or a known hardware issue?

    I use itunes on a Dell XPS502 with W7/64. In some cases have have problems to import CD's. The sound is very disturbed and the import need a lot more time than in normal cases. Is there a problem between itunes and W7/64 or a known hardware issue?
    Example-CD : "Tracy Chapman , Telling stories" is not able to import . I have more such negative cases. But in other cases it works fine and the sound is great.
    The firmware at the inbuild CD/DVD DS-6E2SH is the latest version.
    What can I do??

    hi b noir,
    I don't no about virtuel drives like you mententioned. In the mean time I have rebooted the XPS and run again the iTunes diagnostics. I think the back - chance in the registry was not ready to use.  Now there are another results. They are the same in case of a running CD or a not running CD. The difference in total is like before. It takes more time that iTunes reads the (bad) CD and at the there is no good sound. In both cases ( running or not running CD) iTunes diagnostics gives as a result :
    (the copie from ITunes shows the result of the not running CD from Tracy Chapman)
    Microsoft Windows 7 x64 Ultimate Edition Service Pack 1 (Build 7601)
    Dell Inc. Dell System XPS L502X
    iTunes 10.3.1.55
    QuickTime 7.6.9
    FairPlay 1.11.17
    Apple Application Support 1.5.2
    iPod Updater-Bibliothek 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 3.4.0.25
    Apple Mobile Device Treiber 1.55.0.0
    Bonjour 2.0.5.0 (214.3)
    Gracenote SDK 1.8.2.457
    Gracenote MusicID 1.8.2.89
    Gracenote Submit 1.8.2.123
    Gracenote DSP 1.8.2.34
    iTunes-Seriennummer 00D7B2B00CD25750
    Aktueller Benutzer ist kein Administrator.
    Aktuelles Datum und Uhrzeit sind 2011-06-11 19:33:22.
    iTunes befindet sich nicht im abgesicherten Modus.
    WebKit Accelerated Compositing ist aktiviert.
    HDCP wird unterstützt.
    Core Media wird unterstützt.
    Info zu Video-Anzeige
    NVIDIA, NVIDIA GeForce GT 540M
    Intel Corporation, Intel(R) HD Graphics Family
    **** Info für externe Plug-Ins ****
    Keine externen Plug-Ins installiert.
    iPodService 10.3.1.55 (x64) arbeitet zurzeit.
    iTunesHelper 10.3.1.55 arbeitet zurzeit.
    Apple Mobile Device service 3.3.0.0 arbeitet zurzeit.
    **** CD/DVD-Laufwerkstests****
    LowerFilters: PxHlpa64 (2.0.0.0),
    UpperFilters: GEARAspiWDM (2.2.0.1),
    D: PLDS DVDRWBD DS-6E2SH, Rev CD11
    Audio-CD im Laufwerk
    11 Titel auf der CD gefunden, Spieldauer: 42:07 auf Audio-CD
    Titel 1, Startzeit: 00:02:00
    Titel 2, Startzeit: 03:59:47
    Titel 3, Startzeit: 07:19:27
    Titel 4, Startzeit: 11:31:30
    Titel 5, Startzeit: 15:31:50
    Titel 6, Startzeit: 20:07:50
    Titel 7, Startzeit: 24:27:15
    Titel 8, Startzeit: 27:49:10
    Titel 9, Startzeit: 32:41:25
    Titel 10, Startzeit: 35:29:65
    Titel 11, Startzeit: 38:38:00
    Audio-CD erfolgreich gelesen (Suche nach alter Firmware).
    Laufwerksgeschwindigkeit erfolgreich erkannt
    Die CDR-Geschwindigkeiten des Laufwerks sind:  4 10 16 24
    Die CDRW-Geschwindigkeiten des Laufwerks sind:  4
    Die DVDR-Geschwindigkeiten des Laufwerks sind:  4
    Die DVDRW-Geschwindigkeiten des Laufwerks sind:  4
    After starting the import it is going slower and slower. If it is helpful I can send you a soundfile with these distortions.
    best regards
    tcgerd

  • LOVs and how to substitute a database driven value with a more readable val

    Hello,
    I am using LOVS in my view objects and I like it because it is saving me time whille developing my UI: I get drop down list made automatically for me in my UI forms.
    However I have a requirement to change the values we see in the drop down today.
    Basically the values that show in the drop down are database driven and they are not very readable for the end users, so I would like to somehow convert them with some values that I know would make more sense.
    Let say in my database I have a fiield name type that can be G for general or S for Specific, I would like the user to see General or Specific in the drop down list instead of G or S. How would you do that and can LOVs be configured to do that?
    Thanks

    there is something called display attribute when you create your lov in the ui hints tab..
    you have shuttle the description for the code to the selected pane. .so that you see the description instead of the code that is bounded for the lov attribute..
    http://blogs.oracle.com/workingwithadf/entry/adf-bc_creating_a_listofvalues_lov_and_a_cascaded_lov
    https://lh6.googleusercontent.com/-LZExUnvVJAo/TXNp71j7VII/AAAAAAAAE3s/1ukcrJOrw2Y/s1600/4.png

  • I have two iphones using the same computer and I can only find a backup for my iphone and not my girlfriends.  She uses itunes a lot more often then I do but cant find it

    I have two iphones using the same computer and I can only find a backup for my iphone and not my girlfriends.  She uses itunes a lot more often then I do but cant find it.  Really need some help.  Shouldnt her apps and details be saved online in the itunes store?  Even her apps wont appear

    If you create an Apple ID for your daughter, signing out of the existing Apple ID with the iTunes & App Store on her iPhone will not change anything on your iPhone.
    All apps include DRM protection which is tied to the Apple ID that was used to download the apps.
    If she starts using her Apple ID to download apps, when there is an app update for an app on her iPhone that was downloaded with the current shared Apple ID, she will need to use that Apple ID and password to download the app updates.

  • Last time I updated pages I lost features I liked and was unable to open some pages files.  Now I see the features I liked are back but I have a lot more files to worry about.  Will I be able to open files created in 5.2 if I upgrade to 5.5.3?

    Last time I updated pages I lost features I liked and was unable to open some pages files.  Now I see the features I liked are back but I have a lot more files to worry about.  Will I be able to open files created in 5.2 if I upgrade to 5.5.3?

    Within reason, Pages v5.2 documents are forwards compatible with Pages v5.5.3. Apple introduced the single file format document as a default with Pages v5.5.3 which is not backwards compatible with Pages v5 on Mavericks.
    However, they also provided a File > Advanced > Change File Type > {Single File, Package} menu that allows you to change the current Pages v5.5.3 document into the backwards compatible Package type document. You would follow this transformation with a File > Save operation to complete it.

  • API and Database updates

    Greetings!
    I've searched the archives for the forum and I can't find anything relating to my issue, so hopefully someone will have an idea of how I can get started on a new project.
    I have an SQL database that contains a row for each hour of each day. Every row contains a date (obviously for every one day there are 24 rows), an hour interval (1:00pm), the day of the month, the day of the week (Saturday), the Meridian, the Military time conversion (13:00), the week of the year, etc. This database is used for reporting purposes and it runs out of rows as of next week. I have been tasked with adding enough rows to last us another 2 years, which is about 17,000 rows.
    My colleague mentioned that I might be able to find what I need in the API and then write a little Java program that interfaces with my database to update the rows. Being completely new, I'm a little unsure as to how to go about researching this.
    I did poke in the API and I found the DateFormat class in the java.text package. It seems to have just about everything I need except for the military conversion.
    Does anyone have any thoughts on how I could use this class to write out these future rows to the database? One thing I should mention is that each row has a unique row-identifier that increments sequentially.
    If I have been unclear, please let me know and I will try to clarify. Any help or a nudge in the right direction would be greatly appreciated!
    Thank you!

    Java can acces SQL databases through JDBC. Here is a
    JDBC tutorial that can help you get started:
    http://java.sun.com/docs/books/tutorial/jdbc/index.htm
    i have looked at this tutorial yet there is a problem that i cant really deal with:-
    * am using net beans (windows xp), mysql server, and j/connector driver.
    * in net beans, in the RealTime Tab i can access my database in MySQL, but every time i write my code (in java)so i can connect with it and manipulate its tell me :
    SQLException: No suitable driver
    SQLState: 08001
    VendorError: 0
    my question is why can i access my database through 'Databases' in 'RealTime' tab, and not be able to make a simple connection with it when i run a simple code like this:
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    public class LoadDriverP {
    public static void main(String[] args) {
    try {
    Class.forName("com.mysql.jdbc.Driver");
    } catch (Exception ex) {
    // handle the error
    try {
    Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/world"," user", "pass");
    // Do something with the Connection
    } catch (SQLException ex) {
    // handle any errors
    System.out.println("SQLException: " + ex.getMessage());
    System.out.println("SQLState: " + ex.getSQLState());
    System.out.println("VendorError: " + ex.getErrorCode());
    could it be anything to do with CLASSPATH if it is please tell me what is this CLASSPATH and how can i change it.
    any help would be greatly apreaciated.

  • I have an iTouch and iPad. The iPad holds a lot more stuff. How can I differentially sync both so I don't have as much on the iTouch and I get to choose what goes on it?

    I have an iTouch and iPad. The iPad holds a lot more stuff. How can I differentially sync both so I don't have as much on the iTouch and I get to choose what goes on it?

    When you connect your iTouch to iTunes, open the device by clicking on the iTough button on the left of the screen (do this after you've backed it up).  Then when open, you can go into apps, music, photos, etc and check or uncheck whatever you want on your iTough.  The same applies to your iPad.  After backup, you open the device and check what you want on the iPad.

Maybe you are looking for

  • Problem with bind variable in a procedure

    Hi Experts, I'm migrating forms from 5 to 6i. And in most of the forms I'm getting the error in the procedure "G$_KEY_OPT_MENU". This is the most common error I'm getting in almost like 30 forms. The error is: Error 49 at line 21, column 3 bad bind v

  • Pipelined functions from mssql using DG4MSQL

    Hi to All I have made installation of DG4MSQL 11.1 to connect Oracle db 10.2.0.4 to MSSQL server and found this problem. On my MSSQL side there are piplined database objects , functions that behave like tables and which from mssql side is queried by

  • Install firmware update without simultaneous internet connection

    I use a USB modem for internet service.  Airport Utility want both air port connectivity and internet connectivity.  I therefore can't install the update.  Is there a way around this ?

  • Content Viewer login issue still here

    I made a new Content Viewer via DPS App Builder. The device preview is running perfectly (thank you for the fix). The login issue (you have to login twice) is still here. Best regards Haeme

  • Simple Question... but urgent

    I have a JTree and a TreePath. How can I retrieve the DefaultMutableNode corresponding to this TreePath in my Jtree ? this must be easy but I can not find out how. please help. Sylvain.