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 Mike Lewis 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: dannywild82
  • Order by date
  1. dannywild82

    CD ROM based database/web interface?

    um... use HTML - dont bother with a quick fix. head in book all day breeds good results
  2. dannywild82

    Advice on which type of DB to use

    um... how about this. mySQL/oracle etc are PROPER databses. access / filemaker etc are kids toys that shouldnt be used for anything than a high school attendance monitoring system. If access could do it, why do MS make (ok - sell) Foxpro? But then again, why use foxpro when you have mySQL??? -...
  3. dannywild82

    Method name

    i havent looked at it to be honest. if you are trying to record every time a method is invoked, why not invoke the logging api from the class that is being invoked. therefore you always know the name. you could say: if (logging) myLogger(**log something**) obviously this is at a very high...
  4. dannywild82

    Why use an interface?

    i appear to have been misinterpreted although i can understand how i gave this impression. i was trying to get across that the designers of java used interfaces in order to avoid the complexities of multiple inheritance. - dont bother with a quick fix. head in book all day breeds good results
  5. dannywild82

    general data question

    daPi is correct. you need a sort of 'association class' otherwise you will fail. - dont bother with a quick fix. head in book all day breeds good results
  6. dannywild82

    Method name

    there is a java logging API in jdk 1.4 it does this for you dude - dont bother with a quick fix. head in book all day breeds good results
  7. dannywild82

    convert rows to columns

    apoligez for da spellink - dont bother with a quick fix. head in book all day breeds good results
  8. dannywild82

    convert rows to columns

    there are various forms of normal(ity) UN-NORMALISED (you) 1NF (no vector elements) 2NF where the primary key is of more than one attrib, no non-key attrib functionaly dependant on PART of that key 3NF - no non key attrib f.d. on any other non key attrib ( i think they are in the right order)...
  9. dannywild82

    Why use an interface?

    From the great Dick Baldwin (Hero of all those who did not buy a java text) "I will suggest that there is little if anything useful that can be done in Java without understanding and using interfaces." bromberg: have a look at: http://www.developer.com/tech/article.php/999971 (and the...
  10. dannywild82

    String copying

    jfryer you are correct the reason i went into talking about objects, is that you can get away without understanding the underlying architecture for an example this simple, but later you will shoot yourself in the foot. As in my signature - you need to understand what you are doing. i thought...
  11. dannywild82

    What is this database with a *.dat extension?

    it was probably just a program writing to a txt file. i did that for my A levels. look at the source of pay someone to solve it for you if youre lost <<< Why is everyone trying to get a quick fix???? If you bothered to LEARN the theory it would have worked the first time around!!!! Go to uni! >>>
  12. dannywild82

    Advice on which type of DB to use

    um foreign keys. golden rule - the lower down you can handle the error - the better. it seperates your code, so not handling low level errors in UI code. you can just use triggers to handle anyway. Performance hit???? you think your code is going to be more efficient than formally tested...
  13. dannywild82

    convert rows to columns

    no no no no no!!!! you should NORMALISE YOUR DATA! then you wouldnt have to do this anyway! if youre looking for output use a report wizard
  14. dannywild82

    Popcorn databases begining to fly out of control?

    i assume you can link ASP to mySQL. the only reason you wouldnt be able to would be MS commercial reasons. you should be able to link to ANY ODBC source. You can install mySQL on any Windows Box. Win 95 even!
  15. dannywild82

    new JRE causes banners.class to cease functioning

    you are probably relying on undocumented behavior in a class you are using. Sun will have seen this as a bug and removed it. Put simply, your program probably should never have worked anyway. Try rewriting it.
  16. dannywild82

    Why use an interface?

    why hasnt anyone actually read anything in textbooks that doesnt uinvolve doing a GUI??? interfaces are the ESSENCE of OO programming. if you dont understand them DONT DO ANYTING ELSE UNTIL YOU DO!!! jeez
  17. dannywild82

    easy java question

    they shouldnt! but i dont really know!
  18. dannywild82

    FTP in Java

    why dont you write one? just use http. its only GET and SET. a few threads - youre there!
  19. dannywild82

    Method name

    why would you want to??
  20. dannywild82

    Reading text file and extract the file contents

    its all in the java API dude

Part and Inventory Search

Back
Top