16 Posted Topics
Hi All, I want to run a POJO within an EAR externally. I know this can be done from a servelet, but I'd prefer being able to do it from command line. Is this possible? Are there other options? Thanks!
Hi all, I'm designing a system that will use Solaris 10/9 with a RAID 0 + 1 configuration. My guess is that if I install the system using one disk with partitioning, I'll be able to setup the RAID 0 + 1 configuration from command line. If the installation is …
So I've been reading a lot about Access 2007, but all the books and tutorials don't talk about the stupidly easy questions. I have a SharePoint 2007 running on a server that my team has access to. From what I've read, SharePoint can easily display information and generate reports based …
In both cases it doesn't look like you've initialized the variables. Both of them need an array from that results from a query of the database.
I'm assuming you have the data in string format. If you do, this link is your new best friend. There are tons of string manipulation functions you can use and about 20 different ways to go about doing what you're describing. I would try to put something together then post …
[COLOR="Red"]Exception in thread "main" java.lang.Error: Unresolved compilation problem: The function method() is undefined for the type Madness[/COLOR] [B]There is no method to my madness...[/B] :) Merry Christmas all!
So I'm building a web crawler for a pet project I've been working on. I'm using tutorial code for the crawler then building on it. I've done extensive troubleshooting and haven't had any luck. The problem: [LIST] [*]Roughly half the websites return content, but all of them return headers. [*]Some …
If you're using Firefox you can open a console that tells you the JavaScript errors. I would check that first. Second, you should verify that the variable has the correct information before sending it to the JavaScript simply by printing it out wherever it's initialized.
If you use BIGINT with auto_increment it will give you 9,223,372,036,854,775,807 unique values. [url]http://dev.mysql.com/doc/refman/5.5/en/numeric-type-overview.html[/url] It might save you some work trying to figure out triggers to just go with big int, unless you have another reason for the aaaa, aaab ids. If you have more than 9 million-billion records, you …
A good way to test it is simply by printing out the variable to make sure they are what you think. Try... [CODE] echo "Current Chat: " . $currentchat ."<br />"; echo "Chatlog before: " . $chatlog ."<br />"; $chatlog .= $currentchat; echo "Chatlog after: " . $chatlog ."<br />"; …
There is no "SET" in an insert query. Refer to the query below. INSERT INTO table_name ( field1, field2,...fieldN ) VALUES ( value1, value2,...valueN ); Your getting the error because your SQL isn't correct.
Could you be a little more specific? "But when I tried, the submit button to a separate php was giving errors..." Does this mean the page that you're submitting to is giving error? If so, what are they and can you post the code?
You have two options. Hard code the address to the club in the php or add a field to the database table holds the link. I would highly recommend adding a field with in the database that contains the URL associated with the club. I used different names for the …
This tells you everything you need to know about zipping with PHP. [url]http://us3.php.net/zip[/url] Here is an upload tutorial you may find helpful. [url]http://www.tizag.com/phpT/fileupload.php[/url] You'll have to create a file specific to the user, then add the two files, and finally send it to zip. Good luck! [QUOTE=sacarias40;872436]I was wondering if …
I'm trying to develop a simple program that automatically downloads PDF files from a web server and organizes them into Files. When I download any .pdf file, the size is roughly 30% bigger than when I download it with a browser and it pdf opens, but does not display. So …
Unless I misunderstand you I think this may be what you're looking for. [ICODE] while($row = mysql_fetch_array($result)){ $resultArray[$c] = $row[$returnItem]; $c++; } [/ICODE]
The End.
blur0224