677 Posted Topics
Re: [QUOTE=tcepser;283037]I am with WebFusion (part of Pipex) I have upgraded my account in order to get a database. I know nothing of databases and can only design websites using Dreamweaver (not even the HTML coding) the WYSIWUG! What book or CD or anything would someone recommend for me ( I … | |
Re: Delphi is a good place to start, it isn't the trendiest language around nowerdays but it teaches you good habbits and is extremely powerful and flexible. [url=http://delphi.about.com/cs/azindex/a/blnewcomers.htm]This[/url] chap has a very good guide and set of tutorials. I have been using [url=http://www.ruby-lang.org]Ruby[/url] for the last two years or so and … | |
Re: I had a quick look It appears that your site is still hosted by freeserve however I'd assume that your freeserve(/wanadoo/orange) account is now closed; that is probably why you can't log in via FTP and therefore cannot update the pages. A quick whois showed that you registered the domain … | |
Re: host should be where your database server is located; if it is on the same box as apache/php then set host to 'localhost', if its elsewhere use the IP address of the database server. May also be worth reading [url=http://uk.php.net/function.mysql-connect]this[/url]. | |
Re: [QUOTE=proliant_fan;260852]whoever hates rpms have u tried debian go to console apt-get update apt-get install xxxxxxxxxxxxx its installled and so is evrything it requires, all from the net![/QUOTE] rpm is more the equivilent of debian's dpkg redhat (and fedora) both use a apt-get like system called yum; so in the same … | |
Re: [QUOTE=Ancient Dragon;269396]I am running 64-bit Fedora core 5 and attempted to download core 6. The download (FireFox browser) took about 8 hours and when done the file could not be saved :mad: I know it is not for lack of disk space -- fedora is installed on a 320 gig … | |
Re: [QUOTE=Mohandsa;269181][B]hi all,iI design database by sql by using visual studio 2005,i need to have pdf or any refrence guide to know how to write select,insert, delete statement ,could you help me[/B][/QUOTE] [url=http://www.msdn.com]msdn[/url]. But I don't thinkyou have much hope ![]() | |
![]() | |
Re: ruby is definately the most fun to use. to be honest "cool programming language" is oxymoronic | |
Re: [QUOTE=Cyclops]Hi, After having discussions with friends about what they prefer to play their games on, whether it be ( a PC or a games console such as an xbox ) and the findings were rather more favourable of the computer. So i'm just wondering what do you prefer to play … | |
Re: [QUOTE=joeprogrammer]As I stated before, there are viruses for Macs. [url]http://www.symantec.com/press/1998/n980714.html[/url] I'm not saying that Macs are better than PCs. I'm not trying to defend Apple. I am simply saying that you are not being very helpful on this forum (do you even own a Mac??!), so keep out of this … | |
Re: I ran Fedora Core 4/Gnome for ages on my old machine (800Mhz Athlon w/ 512mb RAM) A stick of 512MB RAM is very cheap ($44 according to Froogle!) and I'd imagine you could run pretty much any recent distro on your computer, both Gnome and KDE seem to be running … | |
Re: [code] SELECT RNO,PNAME,AGE,'discharged' as STATUS FROM TAB1 WHERE enroll_status = 'D' union SELECT RNO,PNAME,AGE,'queued' as STATUS FROM TAB1 WHERE enroll_status = 'Q' union SELECT RNO,PNAME,AGE,'admitted' as STATUS FROM TAB1 WHERE enroll_status = 'A' [/code] | |
Re: [QUOTE=Goitse;265516]Suppose I have this two tables; Modules and Student Modules has the following fields [LIST]Module_Code(Primary Key) [/LIST]Module_Name Student has the following fields [LIST]Stud_Number(primary key) [/LIST]Stud_FullName My problem is that I want to include the Stud_Number on the Modules table to make it a primary key. Can anyone show me the … | |
Re: [QUOTE=proliant_fan;260333]I need a distro for an x86. It must come on 1cd or have a netinstall and it must have a decent package manager and gnome Any reccomendations? P.S My machine hates debian and redhat derivitives[/QUOTE] Gentoo? | |
Just wondering if any rails experts could give me a hand with this problem. I have rails/fcgi/lighttpd set up, when I use script/server it loads up fine. However if I try to run lighttpd as a service /etc/init.d/lighttpd start using the config file in /etc/lighttpd/lighttpd.conf it doesn't quite work. It … | |
Re: [QUOTE=shahzeb;260657]Hi In my company networking department has block msn messenger. no one can logged in on msn messenger. Neighter msn for web work nor msn messenger. They have block all the site of msn messenger. But some people use Trillian to logged in to msn messenger and they got succeed. … | |
Re: I use [url=http://www.gnome.org/projects/epiphany/]epiphany[/url] primarily. It is gecko based so acts a lot like firefox from that point of view, but has a smaller memory footprint and is better integrated with the [url=http://www.gnome.org/]Gnome[/url] desktop. | |
Re: [QUOTE=mesamb1;254715]sorry about that, I have never really tried editing source code in it so my mistake.[/QUOTE] The [url=http://macromates.com/]only[/url] gui OSX text editor you need. Not free, I know, but at €40 not bank breaking | |
Re: or [code] sudo /etc/init.d/servicename restart [/code] or [code] su [password] /etc/init.d/servicename restart [/code] | |
Re: may be typos here but you should try not to use square brackets in your sql; makes it much harder to read also it is easier to join tables in the from clause rather than where, it makes more sense. I'd look in the documentation for more values but something … | |
Re: I think the reason there are less women in the IT field is that when it comes to higher education they don't want to be the only girl on a course. Same with engineering courses. My group at uni had 3 girls and 25 guys. Well, 2 girls and one … | |
| |
Re: i bet what happened is you came from another site that had a certificate your browser trusted, then to come to daniweb you cleared everything after the https:// but didnt notice there was an 's' and typed daniweb.com on the end the fact the certificate is not trusted just means … | |
Re: console program written in 20 seconds. obviously you need to install ruby (unless you using linux or mac on which its already installed) [code] #!/usr/bin/ruby puts "Width :" w = gets.chomp.to_i puts "Length : " l = gets.chomp.to_i p = (w*2)+(l*2) a = w*l puts "Perimeter = #{p.to_s}" puts "Area … | |
Re: [QUOTE=meriem;258360]Sorry but I only know C language..THx a lot for trying[/QUOTE] "i only know" basically means "my tutor will only accept projects coded in.." ? try koders.com. | |
Re: What db are you using? You should be doing that stuff in the database using a stored procedure or whatever. To count things in a database use something like : [code] select count(*) from items [/code] or to add up quantities [code] select sum(qty) from stock [/code] | |
Re: [QUOTE=tseyigai;258343]Hello, I'm getting an occasional pop up when I'm on the internet. I have AVG Professional, and have also run a scan with Ewido more than once, as well as Search and Destroy, and ADaWare. I also have XoftSpySE, and I'm running Zone Labs as well. I got rid of … | |
Re: [QUOTE=EnderX;257218]Does anyone know how to change the ownership of a view in a postgres database? I have no clue how to do so, and all of the solutions I've seen so far online don't want to work for me. Thanks in advance, -EnderX[/QUOTE] [code] ALTER TABLE vw_my_view OWNER TO pty; … | |
Re: [QUOTE=nsan]What is the most popular scripting language on the internet? what is the most popular Database?[/QUOTE] my guess would be perl for scripting language and access for database. note, i'm not ranking those guesses on how good they are; just how many people use them edit: i didn't read the … | |
Re: if you were to use a recent fedora (from the screenshot it looks like you're on redhat 9 or fc1?) you could use yum and just type (as su) [code] yum install gambas [/code] and it would go and find all the prerequisite software, install that then install gambas. as … | |
Re: [QUOTE=Mix;254486]They have bootcamp. They can load Windows and Mac. It's old news boot look it sucks. Why can they run Windows, and my Intel board cant run Mac? When will Mac stop being such proprietary stiffs and let other people who dont want to buy a Mac use OSX?[/QUOTE] Apple … | |
Re: [QUOTE=proliant_fan;253635]FOREWARD: moderators, please read what i am saying before you yell "piracy is bad" at me......... My windows 98 media was destroyed but i still have all the COA and keys etc..... Would it be legal for me to procure a pirated version of 98 and use my (legally acquired) … | |
Re: I bought my iPod for about £260 from Apple about 4 1/2 years ago and still use it daily. The battery only lasts about 4 hours now but apart from that everything is fine. Expensive, yes. Well built, yes. | |
Re: I'm not a windows expert or anythin but I know that this is bad: [code] R3 - URLSearchHook: (no name) - {00A6FAF6-072E-44cf-8957-5838F569A31D} - C:\Program Files\MyWebSearch\SrchAstt\1.bin\MWSSRCAS.DLL O2 - BHO: MyWebSearch Search Assistant BHO - {00A6FAF1-072E-44cf-8957-5838F569A31D} - C:\Program Files\MyWebSearch\SrchAstt\1.bin\MWSSRCAS.DLL [/code] I suggest you run [url=http://www.spybot.info]spybot[/url] and/or [url=www.lavasoftusa.com/software/adaware/]adaware[/url] as it looks like you … | |
Re: [QUOTE=EnderX;253932]I've been requested to update a segment of a database, and given that it's kind of longish, I was looking for some way to directly write the data I've got from a file into the DB. I know it can be done via a third party; I have used Delphi … | |
Re: [QUOTE=saurabh_kanwar;254218][COLOR=#000000]Hi Everyone,[/COLOR] [COLOR=#000000] [/COLOR] [COLOR=#000000]I'm stuck in a bit of a problem. I've got a table called sales with a date field in it, but the date is not in the date format, its in the number format and it's too late to change it as the table's got over … | |
I've been between contracts for the last 3 months or so, doing bits and pieces of work here and there but mainly enjoying my time off (snoozing, watching tv and t'internet). Considering the amount of people working in the IT industry, the popularity of IT/computing in general, the number of … | |
Re: [QUOTE=ashneet;249954]Problem: I have two tables and those two table have one field in common which is "S_ID" first table have 2 fields: "S_ID", "T_ID" second table have these fields: "S_ID", "First", "Last" ---------------------------------- What i want to do is that i need to extract the the field "S_ID" from the … | |
Re: [url=http://dev.mysql.com/downloads/gui-tools/5.0.html]The official GUI tools[/url] | |
Re: hi, if I were you I'd do a little [url=http://en.wikipedia.org/wiki/Php]research[/url] into [url=http://www.php.net]PHP[/url]/[url=http://www.mysql.com]MySQL[/url]; hosting is cheap and there are lots of companies to choose from. It is definately a better idea to back your website onto a database; it will save masses of time and effort in the long run. Basically … | |
Re: [QUOTE=msvinaykumar]Hi, How to convert excel to html in shell prompt Is there any unix command to do this ? so that I can use that in excel Vinay[/QUOTE] install gnumeric then use ssconvert should be something along the lines of: ssconvert -I Gnumeric_Excel:excel -T Gnumeric_html:html40 file.xls file.html | |
Re: glad to see a postgresql user i think what you're after is: [code] bc_dev=# select current_date; date ------------ 2006-09-10 (1 row) [/code] | |
Re: [QUOTE=Bredd S]I took the plunge and decided to learn PHP. I bought the book 'Beginning PHP 4' by Chris Lea, Wankyu Choi, Allan Kent, Ganesh Prasad, Chris Ullman So far its pretty good and I've learned a lot. It'd getting tricky now wioth arrays and implodes and explodes but I'm … | |
Re: [QUOTE=EnderX;250308]I'm currently trying to create a program in delphi to call up a webpage; the page is written in php and records some data about its contents for record-keeping in my system. I'd like to be able to write the program so that when it opens it does the following: … | |
Re: if you install the gDesklets package there is a desklet that copies the OSX dock here is a screengrab : [url]http://openarch.net/blog/file/gdesklets.png[/url] there is a similar one for KDE called karamba (or superkaramba) that you'l find on [url=kde-look.org]kde-look[/url] | |
Re: [QUOTE=mikeandike22;249098]yea I do mainly because 1. I already won the blog thing 2. My podcast sucks and I never do anthing for it Yea I like the vista theme hopefully someone is working on making a customizable Uslab to look like vista. I went with the Mac OS X icons … | |
Re: [QUOTE=andyiain;249232]Hi, Is there any way of finding the modal (most frequent) occurrence of a value. I know that mode doesn't exist in the same way that count, avg and max do but is there any way to combine count and max in such a way to find the most frequent … | |
Re: [QUOTE=sarvesh jaiswar;249214]MY REPLY: What was rowid here. It was giving invalid column name in SQL SERVER. PLZ reply soon.[/QUOTE] your auto-incrementing id field | |
Re: when its hot i'd generally have a beer. my fridge currently is full of staropramen, leffe and some [url=http://www.badgerbrewery.com/beers/index.asp]badger ale[/url] at work i'll have either coffee or tea (yorkshire). i don't drink machine coffee or tea, or anything with non-liquid milk for that matter. |
The End.