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 Wanet Telecoms Ltd 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: JoSno
  • Order by date
  1. JoSno

    What is this colon for?

    I agree that it is definitely a second dimension for the array, and from the code (if elementAt(array[n,m] < 50)) I can judge that it is something limiting the value that can be held there to a range of maximum 50. However I'm reluctant to just change it to a range of 1..50 before I know...
  2. JoSno

    What is this colon for?

    Hi guys, I'm busily porting some SVS Pascal to run under GPC and the compiler has got very upset at (nearly) this line... myArray : ARRAY [1..myConst,1:50] OF myType; Any ideas what that colon does in the second dimension of the array declaration? This was written in Corel some 20 years ago...
  3. JoSno

    Persistent Index?

    But then will it actually maintain the B-Tree or not?
  4. JoSno

    Persistent Index?

    Hi, I have a pretty sizeable table, nothing massive but big enough to warrant an index being created on what would be the "foreign key". The thing is that each day my program runs and it rebuilds the index and then drops it when it is completed, a process which takes about a minute, and I was...
  5. JoSno

    Installation problem on Linux : mysqld ended

    ah well I'll look at that tonight and get back to you. there are no messages prompted as to why it's failing though Jo
  6. JoSno

    Installation problem on Linux : mysqld ended

    Isn't mysqld& exactly the same file, just picked up from the path rather than me executing it directly using a fully qualified path, or indirectly from mysqld_safe? As for mysql itself well that's my problem. It won't run because the daemon isn't running. Cheers Jo
  7. JoSno

    MySQL 5.0 and RH9 installation problems (something w/ permissions)

    Sorry to butt in but where is this error file you are looking at, I have exactly the same problem that's all Jo
  8. JoSno

    Installation problem on Linux : mysqld ended

    Hi guys, I've searched through this forum for answers but whilst people have often been in the same situation as me nobody has ever given an answer, so I'm asking it again. I've downloaded and installed the server, client and shared-compat rpm's. I run bin/mysql_install_db with no problems...
  9. JoSno

    System V IPC

    Cheers for the reply, I didn't mean to be offensive. Hope you didn't take it the wrong way. Your point on Java of course being platform independent settles it as far as I'm concerned. I'll have to use C++ I think. Shame. Jo
  10. JoSno

    System V IPC

    It's the set of interprocess communication utilities in Linux, namely message queues, semaphores, and shared memory. I don't see how you can doubt that one exists when you don't know what it is ;) Jo
  11. JoSno

    System V IPC

    Quick one. Is their a Java library/API for System V IPC suite? Jo
  12. JoSno

    What's the time?

    Right, this one is getting on my nerves! How do I get the system data and time? Can't find it!! Jo
  13. JoSno

    Rewriting App in Swing

    Your question is a bit vague Doug. All Swing components have handy get() and set() functions, as does the hash table. Aside from that I can offer no advice without being able to see the design of your code. Sorry Jo
  14. JoSno

    J2SE API Specification

    I have a development PC that cannot be put on the net for security reasons and it would help me greatly if I could download a copy of the J2SE API spec you can access at java.sun.com. I can't seem to find it though. Anyone know if it's possible to download it, and if it is can you point me in...
  15. JoSno

    My first wifi network

    Hi there, Basically I'm trying to put together an idea of what i need for my first wifi network. I've seen a linksys BEFW11S4 for really cheap and I think I only need 802.11b as 11Mbps seems fast enough for me. Is there anything else I should consider that would mean I should opt for the more...
  16. JoSno

    Fixed length text in csv files

    Is there a way of exporting a spreadsheet to a comma-delimited file so that all fields will be padded out to a fixed length size? ie &quot;hello,,there,everyone&quot; might be (if all set to eight chars)... &quot;hello , ,there ,everyone&quot; Cheers! Jo
  17. JoSno

    LEFT JOIN

    Never mind, I've done it now, cheers for reading this! Jo
  18. JoSno

    LEFT JOIN

    Hi there, I have two tables, one representing stations, one representing platforms. Platform records are linked to stations by a foriegn key STATION_KEY in the table platforms. Some stations have multiple platforms, some have none at all and here lies my problem. I want to be able to display...
  19. JoSno

    Re-ordering values in table

    Thank you for your help abombss, I'll give it a whirl. sleipnir, i understand entirely what you are saying but if you look at what I said, &quot;To save me effort (:P)&quot; you will see that I am just being lazy and wanted it done for me. I am just concerned that others working from my...
  20. JoSno

    Re-ordering values in table

    Hi all, I have a perfectly normal table of the following pattern: key (int), values....... the key is tied into the values though. The problem is I've got to a stage where the keys are out of order so ever query has to have an &quot;order by&quot; clause in it. To save me effort (:P) is...

Part and Inventory Search

Back
Top