JDBC with win 98 (any problems or smoth like XP)

Hi guys,
A new client of mine has a network of 6 computers where all of them are running under winXP and his computer is running under win98 (go figure?!)
Anyway, I have created a Java console application that use MS db and it works beautiful. My concern is, and feel free to correct me, that I might encounter some difficulties with his OS.
Anyone experienced any problem with Java (JDBC) and win98?
Thanks
Ppr

People have problems all the time with all kinds of things. If you're asking if the database will run on Windows 98, I would suggest reading its documentation (although I would be surprised to find one that doesn't). I run MySQL on Windows 98.

Similar Messages

  • I bought the production premium , cs6 , and I download it and registered with out any problem , I formatted my computer then I downloaded the collection , now everything else working only after effect is not working , what shall i do

    I bought the production premium , cs6 , and I download it and registered with out any problem , I formatted my computer then I downloaded the collection , now everything else working only after effect is not working , what shall i do

    did ae install without problem? check the install logs to be sure (Troubleshoot with install logs | CS5, CS5.5, CS6, CC)
    if it did, what do you see when clicking the executable?

  • Hi, I have an early 2008 24" iMac, I need more storage space and was wondering if I could fit a 3TB Western Digital Caviar Green HDD into it with out any problems? This is the one I've seen, Western Digital Caviar 3TB SATA 6 GB/s 64MB Cache 3.5 inch

    Hi, I have an early 2008 24" iMac, I need more storage space and was wondering if I could fit a 3TB Western Digital Caviar Green HDD into it with out any problems? This is the one I've seen, Western Digital Caviar 3TB SATA 6 GB/s 64MB Cache 3.5 inch

    My bad?
    You're original response was questions/post  about an iMac. Now you've edited it to ask about a Mac Pro?
    You can more easily add internal drives in a Mac Pro.
    Not too terribly easy to add/replace drives in an iMac.
    If younhave questions about a Mac Pro, try posting in the Mac Pro forums.
    Much more knowledgeable users there.

  • JDBC with MSSQL 2005 -- problem connecting

    Hi, I have setup JDBC and I am able to connect to a MySQL database just fine. But I can't connect to MSSQL SQLExpress 2005.
    I got the sqljdbc.jar file placed it under the LiveCycle8\jboss\server\all\lib folder and setup the Datasource file as:
        MSSQLDS    jdbc:sqlserver://LIVECYCLE\SQLEXPRESS:1433;databaseName=MyDBName
    com.microsoft.sqlserver.jdbc.SQLServerDriver
        username
        password
             MS SQLSERVER2005
    Then I modified the login-config.xml and added the application-policy as:
                   username
                   password
                   jboss.jca:service=LocalTxCM,name=MSSQLDS
    Then in LC connection, setup the string to java:/MSSQLDS
    When running the test query b I get NO Response At All.  And I mean, even if I intentionally change the datasource file to hold incorrect information, I'll get no response. However, I can connect to MySQL without any problems.
    b Any ideas?
    Thanks for any help!

    JavaImran wrote:
    RoyGrini wrote :
    Looks like login problems. Username/password or windows authentication logon problem.        * I didnt give any UN and Pwd for my database.........And the
    at com.microsoft.sqlserver.jdbc.SQLServerConnection.loginWithoutFailover(Unknown Source)gives you a 'connection refused'
    Try with providing a SQL username/password. Maybe that will work
    - Roy

  • I went to update my facebook app and it keeps saying it cannot download at this time!! All other apps updating/downloading with out any problems, any suggestions??

    My facebook app wont update/download!! Keeps saying it could not download at this time. All other apps are updating/downloading with no problems. Any suggestions please?? Its driving me nuts!!

    https://discussions.apple.com/message/23721474#23721474

  • I am running FF 6.8 and when trying to download 6.12 I am told I do not have the systems premission to insatall it. I have been using FF for a few years now with out any problems. What has been changed to lock me out of FF upgrades?

    I have downloaded the upgrade and attempted to move it from the application folder to the dock without any luck and when I ask help to check for updates I am told I do not have permission to install updates. I attempted to update FF a couple of months ago and when I encounter this problem I downloaded Safari and installed it. I have tried a couple times along the way to download the upgrade to FF without any luck.

    I just scanned 17 pages of Forum questions and responses and found this response to questions similar ours:
    cor-el 11589 posts 799 answers
    Posted November 16, 2010 7:11:19 PM PST:
    If you have Mac OS X 10.4 or newer then do this:
    • Download a new copy of the Firefox program: http://www.mozilla.com/firefox/all.html
    • Trash the current Firefox application to do a clean (re)install.
    • Install the new version that you have downloaded.
    Your profile data is stored elsewhere in the Firefox Profile Folder, so you won't lose your bookmarks and other personal data.
    Prior to trying this I opened my Profile Folder and then opened My Account to see if my bookmarks were there - I did not find my bookmarks.

  • Using "with" Blocks: Any Problem?

    Is the use of with blocks frowned upon among InDesign scripters these days? I'm aware that they are often disfavored in the web world, but I see them used in some sample code I've seen, and being analogous to AppleScript tell blocks, it seems to cut out a lot of repetition or creating non-essential variables. Is there really a risk? Some of the reasoning I've seem mentioned to avoid it involve scoping of variables with the same name, but that could easily be avoided in a personal script, no?

    Hi Rc
    In my opinion there are 2 issues regarding the use of with.
    1) General issues which are the sources of the frowns and the reason why ECMA V5 strict mode bans it use see with - JavaScript | MDN I can not see why those reasons should not apply to Indesign.
    2) Specific InDesign issues.
    A quick intro for the wider audience.
    With can be as far as I know used in 3 ways 1) Method, 2) Property Set 3) Property Get.
    The following 2 scripts show how we can apply these 3 ways using and not using with,
    // With With
    var myRec = app.activeDocument.rectangles[0]; // Note script will crash here if you don't use your brains
    var s;
    with (myRec) {
        move ([],[10,30]); // method
        rotationAngle = 45; // property set
        shearAngle = 15; // property set
        strokeWeight = 3;// property set
        fillColor = app.activeDocument.colors.itemByName("Cyan");// property set
        strokeColor = app.activeDocument.colors.itemByName("Magenta");// property set
        s = shearAngle;// property Get
    // Without With
    var myRec = app.activeDocument.rectangles[0]; // Note script will crash here if you don't use your brains
    var s;
    myRec.move ([],[10,10]); // method
    myRec.properties = {
        rotationAngle: 45,// property set
        shearAngle: 15, // property set
        strokeWeight: 3,// property set
        fillColor: app.activeDocument.colors.itemByName("Cyan"),// property set
        strokeColor: app.activeDocument.colors.itemByName("Magenta"),// property set
    s = myRec.shearAngle // property get
    If you run both script you might think there's not much in it.
    Regarding the "method" and "get" usages besides the general "with" issues then I don't think there's much of a difference.
    However regarding the "set" usage there can be a very significant difference.  You can see this by running each script and undo the changes made to your rectangle by each script.
    Using with you have to undo each and every property setting as each one is applied in turn.
    Using properties all the properties are set at the same time and only one undo is needed. (Each property setting can result in a document redraw and a disk writing.
    Setting the properties in one go can have a very large difference to the run time of the script.  Although one can reduce this by using redraw = false and FAST_ENTIRE_UNDOMODE using these can sometime be problematic.
    However even when scripting Illustrator and the like where one cannot set properties on mass the general issues apply.
    My pennies worth,
    Trevor

  • Voice only plan with Rogers - any problems?

    Hey there - i phoned roger's yesterday and was told a voice only plan that is purchased and costs over 35$ per month is elligble for the 199$ price tag ont he 3G 8GB iphone.
    I was also told that i should not do a voice only plan because as the iphone apparently updates randomly and without your control, i could rack up a bill over 500$ because of data usage when the iphone updates.
    My question is:
    1. is this true?
    and
    2. is there anyway way to work aroudn this so i can use wi-fi for my internet needs and use my voice plan obviously for the phone part without being charge the apparent "500$"
    thanks.

    I think you can turn off the browsing capabilities until you are at a WiFi or your own wireless network. You should have the say over when it updates, just as you would on your computer. So you would just make sure you're in a place where you have free internet access and let it update there.
    But I don't have an iPhone, so this is just speculation.

  • After win 10 upgrade what to do with win 7 free upgrade disk

    Is the windows 7 free upgrade that i got when i bought my l305-s5946 somehow linked with the windows 10 upgrade, or can i use it to upgrade a different toshiba laptop from vista to win 7 with out any problem.any info on this would be helpful. I bought a fixerupper laptop (same model), bought the vista recovery disks and was told that the free win 7 upgrade for that model was no longer available, so, i would realy like to upgrade it to win 7 if possible, with the upgrade that i already have that is not being used now.thanks

    Try cleaning the lens and see if that will restore functionality to the DVD drive.  Use a DVD lens cleaning disk, if you have a can of compressed air, shoot some into the slot or wrap a fine microfiber cloth (eyeglasses cleaning cloth)  around a business card and insert it gently inside the slot.
    If no success, make an appointment at an Apple store genius bar and get a free diagnosis from them.
    Ciao.

  • A P Elements 3 no longer works with win 7

    A P Elements 3 no longer works with win 7, crashes when I click on preferences and no sound works in editor. So I want to upgrade but not seeing any dates with newer editions. Whats the oldest I can go to work with win 7 64 bit? Like maybe APE 10? Or maybe there is an update to fix 3?

    dfishead
    I have Premiere Elements 4 through 13 on Windows 7 64 bit, and all are working fine.
    You really do not want Premiere Elements 10 on a computer that uses a NVIDIA GeForce video card/graphics card.
    And, 13/13.1 does  not support Windows XP, Windows Vista, or OSX 10.7.
    Do check System Requirement as well as computer resources.
    How far are you getting with the Premiere Elements 3 install on Windows 7 64 bit? Depending on the answer to that question, have you been installing the 3.0.2 Update
    after the 3 install?
    Adobe - Premiere Elements : For Windows : Adobe Premiere Elements 3.0.2 update
    Have you right clicked the desktop icon for the program, if you got that far, and selected Run As Administrator?
    When you are trying to get Premiere Elements 3 on Windows 7 64 bit, are you at least doing that by ignoring the "not compatible" messages and moving onward through
    the installation dialogs as long as it will let you?
    Please review and then let us know the outcome.
    Thank you.
    ATR

  • SAP GUI 7.10 overwrites SAP GUI 6.40 once installed and any problem

    Hi,
    Currently I am using SAP GUI 6.40 for my SAP logon,
    but if I install the Internet explorer 7.0 then in SAP transactions F1 help information will not support for this and information on the screen will be blank.
    As per my understanding if we use SAP GUI 6.40 we cann't use the Internet explorer version 7.0. I heard by using SAP GUI 7.10 we can use the Internet Explorer 7.0 with out any problem to F1 help in SAP transactions.
    I have got the path to download the SAP GUI 7.10. If I install will it automatically upgrades the older version, and no more we can use SAP GUI 6.40.Because I am functional consultant I don't know deep about that. So if any problem occurs during the Installation of SAP GUI 7.10 then my SAP log on will be  in problem and cann't use the same SAP GUI 6.40.
    Please share your information on this.How I can go about that without any problem to my SAP activities upon installation. Is there Basis consultant is required for this.
    rgds
    Swamy

    Hi Swamy G S. I'm just install the SAP GUI 6.40 on my test PC -->
    MAIN MODULE INFORMATION:
       Name............: saplogon.exe
       Description.....: SAP Logon для Windows
       Product version.: 640 Final Release
       File version....: 6405.5.26.1027
       Build number....: 917864
    The OS is XP SP2.  The IE 7.0 build 7.0.5730.11
    And the help F1 works fine.
       Try to patch the SAP GUI 640 at least to 26 PL.
    Regadrs.

  • I can not connect to iswifter, some times it is connected and some time it shows " UNABLE TO CONNECT TO SERVER PLEASE CHECK THE INTERNET" but my internet connection is good and other wbe site i can open without any problem. Please guide  me..

    I can not connect to iswifter, some times it is connected and some time it is not connected and getting message " UNABLE TO CONNECT TO SERVER , CHECK YOUR INTERNET" but my internet connection is ok and I can open other web site with out any problem.  Please guide me how to solve this issue.

    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
     Cheers, Tom

  • When i try to open the itunes store in itunes,windows closes it after not finding a solution for the problem.I have uninstalled and reinstalled the Itunes software. I am running Win 7-with IE10-any help?

    When I selected the Itunes store on my win PC today-the program was closed by windows with windows saying there was a problem. I tried a couple of times and then uninstalled the itunes software and reinstalled it with the same results. The program has always worked before but I have not used it recently since the Ipad now receives it's software updates right off the router. I am running Win 7 with IE10. Anyone with the same problem?

    My post has been viewed 24 times, and yet have had no answers. I have always like adobe products, however if this is the type of support they offer, I will never purchase another product of theirs. The issue I am having is the same issue many others have had, and yet no answer. Poor customer service!

  • I have reinstalled CS5.1 extended on my new Lenovo Laptop with Win 8.1 64 bit. No installation problems, but now Image Adjustments and tools do not work any more.

    Operating Problem with CS5.1 extended. I replaced my old HP Laptop with a new Lenovo laptop with Win 8.1 and reinstalled CS5.1 64-bit version. The software downloaded and installed correctly and worked for a day, but when I rebooted the next day, the Image Adjustments and tools functions did not respond any more. I have uninstalled and redownloaded/ reinstalled without success.

    Notebook Info
    1 x Lenovo G710 Notebook, Intel® Core™ i5, 43,9 cm (17,3 "), 1000 GB HD,
    Intel Core i5-4210M 2,60 GHz, (Turbo-Boost 2.0 bis 3,20 GHz)
    43.9 cm (17.3") 900p (HD+) LED-Display (1600 x 900)
    8192 MB DDR3-RAM
    Harddisk: 1000GB SATA
    NVIDIA N15V-GM mit 1GB DDR3
    Prefs
    As per download settings, I changed nothing
    Image Info
    Jpg conv.from RAW Canon, dim. 4746x3567, 6,64 Mb
    The software worked on the first day, problems appeared next day. I uninstalled and deleted the exe.file, then redownloaded and reinstalled but same problem persists.
    I then downloaded and installed on my PC and everything works.
    Regards Roland

  • Problem with wine and Tony Hawk Pro Skater

    Hi, I 've installed sucessfully Tony Hawk 4, but when i execute Start.exe:
    [antonio@laptop ~]$ wine .wine/drive_c/Archivos\ de\ programa/Aspyr/Tony\ Hawks\ Pro\ Skater\ 4/Start.exe
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    fixme:msg:pack_message msg 14 (WM_ERASEBKGND) not supported yet
    my graphics card is Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller, and maybe should install a module for it works with wine.
    The window where you start all options configuration appears to me, but when I go to Play THPS4! showed me the error. The version of my wine is wine-1.1.8. I don't know if I have to install any shape or form over any other option in winecfg.
    thanks
    Last edited by trancos83 (2008-11-10 20:19:44)

    Can you try it on a desktop comp using arch and wine instead?  Maybe it's a graphics problem?  Anyway, I've checked the min req. and it's quite low..
    Please check this site if your game is supported or if ever you want to play another game in the future.
    http://appdb.winehq.org/

Maybe you are looking for

  • Error while using row_num function in forms6i

    Oracle forms6i Hai While using row num function in my forms i had a error. My coding is declare pin_no varchar2(16); pin_date date; pin_time varchar2(25); mstr varchar2(200); m_file TEXT_IO.FILE_TYPE; m_file_path varchar2(100) := :global.filename; li

  • Intel imac and WMP

    Hi If I purchase intel imac, I am not going to W. media player. (Unfortunately, I have to use it). Any suggestions other than VLC and Flip4Mac WMV Studio? Thanks...

  • How can I get Photoshop Elements 13 to start up in Expert Mode?

    I just upgraded to Photoshop Elements 13 for Windows (I was using Photoshop Elements 12 for Windows), and I can't get it to start up in Expert mode. When I exit in Expert mode and restart, it starts in Expert mode and then after a few seconds it reve

  • MD50 , getting exception "Coverage not provided by Master Plan"

    Dear Sir, We have mate-to-order scenario and MRP run was made using MD50 against a Sale-Order . After the MRP run , we are getting an exception in MD04 for a Material which is a Bought-out Material . The exception is "Coverage not provided by Master

  • How to use replace function?

    Hi, How do I replace a string and decode into a grouping? I have something like this: Select distinct id,decode(SUBSTR(id,1,1),'A','A-D','B','B-D'...from Table I want the distinct id for a string called "T to be replaced with XXX and decoded into the