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 bkrike 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
  • Content: Threads
  • Order by date
  1. 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
  2. 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
  3. 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...
  4. 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...
  5. 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
  6. 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...
  7. 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...
  8. rs51

    install mysql driver

    hi i'm very new to java (just curious) i'm following this tutorial on databases and at certain point i've to use the driver i went to mysql download this: mysql-connector-java-3.0.9-stable wherein is the .jar file. i googled a lot in forums and also read the readme and the sun One Studio 4...
  9. rs51

    result set, result pointer

    i've no programming background whatsoever, but i like php+mysql, though i'm very newbie at both. (i must confess i have a cms but was mostly copy&paste) i learned how to connect to mysql from php and then wondered how to list the databases i've at mysql. in the manual i found this: <?php...
  10. rs51

    Database design stage

    i'm not sure where to post this. i'm still in designing database stage but i'm thinking how i'll write the queries and what problems i'll find with php too. Here's my situation: i was asked to develop an intranet where users will have to answer about 80 questions each. As i think that's too much...
  11. rs51

    changign column order

    hi i read this in the manual: If you want to change the order of columns anyway, you can do it as follows: Create a new table with the columns in the right order. Execute INSERT INTO new_table SELECT fields-in-new_table-order FROM old_table. Drop or rename old_table. ALTER TABLE new_table...
  12. rs51

    validating numeric input

    i wrote this function: function numero($limite, $normalizado) { $normalizado = $_POST['numero']; $normalizado = str_replace(' ', &quot;&quot;, $normalizado); if (!isset($_POST['numero'])) { $resposta = '<p>...não escreveu...</p>'; return $resposta; } if (isset($_POST['numero'])) { if...
  13. rs51

    ie 6 never ends loading imgs

    hi i've win XP pro with all the latest windows updates; i've also opera and, when i open this forums homepage, in opera opens in 1 second or 2, but with ie6, never ends and the status bar says 59 left missing itemns... what's going on? thanks
  14. rs51

    Can't read from messagefile

    hi again in my atempts to solve my case i run the mysql site sugestion and made this: shell>C:\mysql\bin>mysqld-nt --language=portuguese but i got this answer: 031019 18:21:20 Can't read from messagefile 'c:\mysql\share\portuguese\errmsg.sys' 031019 18:21:20 Aborting So, i guess i need a new...
  15. rs51

    confused with language

    hi i just opened this thread: thread436-684018 i guess half solved it, though sometimes i get that 2003 error anyway, my language and settingd (win settings) are in portuguese, but i guess i messed something since now the command line, when operating with mysql, writes in...english. i checked my...
  16. rs51

    Can't connect to MySQL server on 'localhost' (10061)

    hi when i thought i had it all ok (see thread thread436-671800 i was entering mysql command line and i repeatedly get this message: Can't connect to MySQL server on 'localhost' (10061) i tried several commands but everything seems ok. C:\>mysql\bin\mysqlshow mysql\bin\mysqlshow: Can't connect...
  17. rs51

    language=portuguese

    hi some time ago i had this post: thread436-552165 got no answers. So, i'll try to aproach it in another angle: when i use the dos command, all characters from my language (portuguese) displays correctly. But if i'm using dos to work with mysql, some chars appear incorrect: ç,ã,ò, ó and so on...
  18. rs51

    strange characters

    In my settings, i've strange characters (language = pt - portuguese) If i go to (using explorer): C:\Documents and Settings\rs51 and then open it, i see: \Definiþ§es locais\Hist¾rico where: Definiþ§es should be: definições, and Hist¾rico should be: histórico How can i put it ok? bcastner told me...
  19. rs51

    making a folder private

    some time ago i made all my folders private, in my win XP pro. I achieved it, but now i want to undo it, went to help and cant find &quot;user profile&quot;, where help says i'll find a check box saying &quot;turn this folder private so that only me can see it&quot;. But i cant find this folder...
  20. rs51

    submit form with enter key

    hi i've this form: <form action=&quot;<?=$_SERVER['PHP_SELF']?>&quot; method=&quot;POST&quot; onkeypress=&quot;if(window.event.keyCode==13){this.submit()};&quot;> <p>Base de dados: <select name=&quot;db&quot;> <?php $dbs = mysql_list_dbs(); for ($i=0;$i<mysql_num_rows($dbs);$i++) { $dbname =...

Part and Inventory Search

Back
Top