Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #2K
~3K People Reached
Favorite Tags

16 Posted Topics

Member Avatar for blur0224

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!

Member Avatar for blur0224
0
84
Member Avatar for blur0224

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 …

Member Avatar for blur0224
0
279
Member Avatar for blur0224

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 …

Member Avatar for boblarson
0
183
Member Avatar for Imratzio

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.

Member Avatar for Imratzio
0
306
Member Avatar for mr_scooby

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 …

Member Avatar for mr_scooby
0
144
Member Avatar for blur0224

[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!

Member Avatar for JamesCherrill
0
102
Member Avatar for blur0224

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 …

Member Avatar for blur0224
1
325
Member Avatar for Drako12

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.

Member Avatar for Drako12
0
179
Member Avatar for paullanesra

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 …

Member Avatar for paullanesra
0
238
Member Avatar for Resentful

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 />"; …

Member Avatar for Member #120589
0
112
Member Avatar for tcollins412

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.

Member Avatar for hielo
0
137
Member Avatar for Electricfan

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?

Member Avatar for blur0224
0
127
Member Avatar for BarrieD

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 …

Member Avatar for BarrieD
0
109
Member Avatar for sacarias40

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 …

Member Avatar for sacarias40
0
188
Member Avatar for blur0224

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 …

Member Avatar for blur0224
0
223
Member Avatar for rariti

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]

Member Avatar for rariti
0
117

The End.