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 strongm 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: *

  1. obadare

    need help

    Try this link: http://docs.python.org/tutorial/controlflow.html
  2. obadare

    CMD to file

    Try and play with this.. BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); PrintWriter pw=new PrintWriter(new File("filename")); String line; while((line=br.readLine()) !=null){ pw.write(line); pw.flush(); }
  3. obadare

    Advice needed - looking for training course for variety of levels

    The Open University offers a good course on relational databases, M358 Ithink it is; suitable for any literate person who have worked with a database before. http://www.open.ac.uk
  4. obadare

    Installing Linux Question

    Try using unetbootin, I found it useful in installing most Linux distros
  5. obadare

    Samba question

    Try map network drive from windows and see if the shares are all listed.
  6. obadare

    MySQL++ problem

    I apologize for posting in wrong forum, the link you provided was very useful. Thank you
  7. obadare

    MySQL++ problem

    I have tried Googleing this subject without much success. I am using g++ on ubuntu 9.4, I cannot connect to MySQL to my C++ programme. I will appreciate any suggestion in the right direction from you Experts?
  8. obadare

    ubuntu-10 server pxe installation

    Very useful. Thanks a lot
  9. obadare

    ubuntu-10 server pxe installation

    I need help in loading the archives during PXE installation, I keep getting archive not available. Can anyone please help? I have googled this without much success
  10. obadare

    Copying a LOT of file, from server to server?

    Sorry abouit that
  11. obadare

    Copying a LOT of file, from server to server?

    Try ssh -r username@server1:[directory_to_copy] username@server2:/destination_directory
  12. obadare

    SSH on the System i

    1. Generate the key pair on the local machine ssh-keygen -t rsa 2. Copy the key to the server scp /home/[usermame]/.ssh/id_rsa.pub username@server_ip:~/.ssh/authorized_keys That was how I did it on Cygwin and Ubuntu server
  13. obadare

    I need help with my GUI program

    Try putting the Panel with GridLayout into JFlowLayout and add them to the frame
  14. obadare

    Comparing two fixed list

    this falls within realm of sets: you need to find the intersection between 2 lists, have a look at this link: http://www.lupinho.de/gishur/gishur.doc/gishur/x2/core/Intersection.html
  15. obadare

    Web Services

    Could you shed more light on your requirements: - are you coding the server and / or the client? - what type of data is being exchanged, - the setting for your application [intranet/internet]?
  16. obadare

    ResultSet & Web Services

    I guess converting the resultset to an XML document would e the way to go.
  17. obadare

    Database Theory class (online or live)

    Relationships are a feature of all RDBMS. In SQL this is created by specifying a foreign key: create table product_type(id int primary key,name varchar(100)); create table products(id int primary key, type_id int not null references product_type(id)); this create a relationship between the...
  18. obadare

    Database Theory class (online or live)

    My understanding of database design: 1. Data storage 2. Data integrity & consistency 3. Ease of data manipulation 4. Usability [need to achive the right balance between normalisation and usability] Normalisation - is a important to allow data integrity, ease of data update without having to...
  19. obadare

    Database Theory class (online or live)

    I assumed a knowledge of SQL queries in my post.

Part and Inventory Search

Back
Top