Please turn JavaScript on
Stack Overflow - Recent Questions icon

Stack Overflow - Recent Questions

Want to keep yourself up to date with the latest news from Stack Overflow - Recent Questions?

Subscribe using the "Follow" button below and we provide you with customized updates, via topic or tag, that get delivered to your email address, your smartphone or on your dedicated news page on follow.it.

You can unsubscribe at any time painlessly.

Title of Stack Overflow - Recent Questions: "Stack Overflow - Where Developers Learn, Share, & Build Careers"

Is this your feed? Claim it!

Publisher:  Unclaimed!
Message frequency:  435.46 / day

Message History

I am new to HTML and CSS, and I've encountered a Problem I seemingly can't solve. The G in the second line in an <li> element does not want to line up with the S in the first line, no matter what I try (Screenshot of the Problem). I have researched it and found nothing. Realisti...


Read full story

I have HQL statement:

insert into Item (ost, value, comments, startTime, endTime, proposedBy) select si.ost, si.value, si.comments, si.endTime, si.endTime, u from Item si, User u where si.ost = ? and u.id = ?

How could it be modified to use parameters' values for ost and startTime columns while taking other columns from select?


Read full story

The problem is:

<?php foreach ($users as $user): ?> <?php $user = $user[0] ?>

error:

=> Fatal error: Cannot use object of type User\Entity\User as array in ../module/User/view/user/index/index.phtml

My class is:

class IndexController extends ApplicationController { /** * Store the user. * @var \User\Entity\User */ protected $_user; ...

Read full story

I have a report I am creating through an ODBC connection. The report includes several invoices, where each invoice has several products. There is also a table which contains all the historical price changes for each product (field: unit-price). Currently there are duplicate product records being pulled, one for each time there was a price change. Therefore, I need to filter m...


Read full story

I am working on spring boot and batch application. Due to batch, the application tries to connect to datasource with spring-boot:run. I want to stop that and tried spring.datasource.initialize=false

Along with this also put spring.batch.job.enabled=false

While the second one works fine, it seems the first one is ignored.

Could someone let me know if t...


Read full story