Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: rs51
  • Order by date
  1. rs51

    accessing MySql

    thanks for your answer as soon as i can i'll try it
  2. rs51

    accessing MySql

    Then, on your home machine, just point any client programs to use the IP address of your work machine and its MySQL port number. In my machine i do it like this: C:\mysql\bin>mysql -h localhost -u root -p Enter password: but from home to office, not sure... can you pls give me an hint or...
  3. rs51

    accessing MySql

    i've a machine (win 2000) that has MySql (at work) how can i access mysql in that machine from my machine at home (winXp Pro)? thanks in advance
  4. rs51

    granting access to mysql

    SOLVED: mysql> grant all on *.* to root@123.456.7.890 identified by '*****';
  5. rs51

    granting access to mysql

    i have two networked WinXp machines. let's say machine called 'father' has java and mysql installed now i need 'son' machine to have permission to access, from a java app, mysql in father machine. how can i grant the accesses? thanks in advance
  6. rs51

    Provider (0x80004005) non specified error

    case SOLVED! had to change same definitions in the iis, in the virtual web (aplication protection)
  7. rs51

    Provider (0x80004005) non specified error

    i've win xp Pro, access database in odbc; before i formated my disk, everything was fine - my site just dysplayed fine, but after that, i keep getting this error since the moment i try to login the error msg points to this line of my script: rs.Open strsql, "dsn=atc" I know the script is ok...
  8. rs51

    JBuilder prompt behaviour

    i've trial jbuilder enterprise and, when i have something like this: args); { the prompt should be AFTER the {, but instead lies somewhere inside the word args and complicates very much the writing - one has to calculate, in similar situations, where to add spaces or clear or something else with...
  9. rs51

    writing build.xml

    i read the manual in Using Ant Writing a Simple Buildfile, but... i dont get it: dont know where to put file names, dirs, and so on Can anyone pls indicate me another tut or example about writing a very very simple build.xml? thanks in advance
  10. rs51

    jar problem again

    hi again i checked from msdos and all files are inside .jar. What i mean is that in my app , for instance, my FJrame has an icon, but when i run the jar, the icon doesnt show up, when i run the app from dos, i see all North, South, East, West and Center pannes fullfilled, but from jar i only see...
  11. rs51

    jar problem again

    Thanks for your help i tried exactly what you recomended but the result is the same i got (after i posted): i only get A PART of the final result. I explain better: i'm following this tut from sun about GUI and i'm building a dive log app. I'm not over yet, and (to complicate a bit) i used a...
  12. rs51

    jar problem again

    I have this problem: i want to create a jar file from a package called pt.rs.divelog i use this dir: C:\Java_Granel\Classes\pt\rs\divelog inside this last one i've my classes and a folder named images with gifs, etc inside. I tried creating the .mf and the .jar inside the last and first folders...
  13. rs51

    Cant make a .jar

    In first place i have to thank you again for your continued help Now i made this: i've a dir called: a inside i have this file: HelloWorldApp.java public class HelloWorldApp { public static void main(String[] args) { // escreve "Viva, Cosmos!" System.out.println("Viva...
  14. rs51

    Cant make a .jar

    sorry "Exception in thread "main" java.lang.ClassFormatError: Adivinha (Bad magic number)"
  15. rs51

    Cant make a .jar

    if i use your command to read the jar, i get this: dos dir>java -jar a.jar Exception in thread "main" java.lang.ClassFormatError: Adivinha (B at java.lang.ClassLoader.defineClass0(Native Method) at java.lang.ClassLoader.defineClass(Unknown Source) at...
  16. rs51

    Cant make a .jar

    thanks for your answer i get this: META-INF/ META-INF/MANIFEST.MF Adivinha.class I'd like to open the jar with double click i've win xp pro, all updates and jsdk1.4.2_03
  17. rs51

    Cant make a .jar

    i googled and searched for this item but coudnt find help here's what i've: a simple class Adivinha.class that compiles and runs perfectly i wrote a m.txt (manifest) saying: Main-Class: Adivinha.class and inserted a new line at the end. from the same dir, i made: command line>jar cmf m.txt...
  18. rs51

    install mysql driver

    i guess i got it!! missing // in url: now i've it like this: String url = "jdbc:mysql://localhost/Pedro?user=root&password=***"; no more missing driver :))) thanks to everyone who helped me!
  19. rs51

    install mysql driver

    i changed a few things: my code: "import java.sql.*; import java.util.*; public class TesteJDBC { public static void main(String[] args) { Connection conn = null; try { // mysql-connector-j-2.0.14-bin.jar tem que estar na CLASSPATH //String url =...
  20. rs51

    install mysql driver

    thanks for your help, sedj! my bath file: " set JAVA_HOME=C:\j2sdk1.4.1_02 set PATH=%PATH%;%JAVA_HOME%\bin set CLASSPATH=%CLASSPATH%;%JAVA_HOME%\jre\lib;%JAVA_HOME%\lib set MYSQL_DRIVER=C:\Documents and Settings\Rafael\Os meus...

Part and Inventory Search

Back
Top