having problems w/my remote host recognizing my classes. i've put the classes in web-inf/classes and set the web/xml to:
<servlet>
<servlet-name>ServletName</servlet-name>
<servlet-class>ServletName</servlet-class>
</servlet>
<servlet-mapping>...
having problem selecting data from from a .csv or a .txt file using dbi:file in the following:
$dbh = DBI->connect("DBI:File:f_dir=../directoryLocation") or die "Cannot connect: " . $DBI::errstr;
foreach $addedProduct (@productArray)
{
chop($addedProduct);
$item_number = $addedProduct...
we have a master mysql db locally where we update, delete, insert, etc. we want to use the same db remotely at a handful of different sites on different hosts, etc.
questions is: is there a way that the local master db can be uploaded to 6 different servers, each time replacing, overwriting...
i'm trying to populate an array with a reference to array returned by:fetchrow_array so that I can use the values more than once during in script
$counter = 0;
foreach $addedProduct (@cartData)
{
my $query = "Select column1, column2, column3, column4, column5, column6, column7 from tableName...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.