Here's an example:
public class Teste
{
public static void main(String[] args)
{
func1();
}
public static void func1()
{
try
{
func2();
}
catch (Exception e)
{...
I have Web Service REST Server , I need to traffic a web service image to the client, when the client requests a certain image, the web service converts to base64 and sends it to the client.
I'd like to know what I'm doing to tes...
I have the following query:
select T1.dt_producao, T1.cod_turno, T1.cod_periodo,
CASE
WHEN T2.TP_PALLET = 'DZ' THEN
sum(T1.QT_PROD* T2.QT_EMBALAGEM*12)
ELSE
sum(T1.QT_PROD* T2.QT_EMBALAGEM)
END AS "APON.TOTAL",
(...
First of all, I've done a lot of research here on the site and found no more in-depth example, just basic questions / answers about how to get the difference between dates, what I got to do and it works the way I want. >
However, the code I cu...
Hello everyone. I'm studying the web services part and I'm a bit confused with the theoretical part. I was reading the article on this site
link
And I was confused by the definition of "intermediate web service".
I'm developing a simple...
I'm currently trying to do the following in QML at the same time:
Dynamic loading of objects previously created a separate file;
When doing what is previously described, select objects stochastically
For this I am, very basically,...
Also how to rename struct data types?
I have doubt about this because of a Windows Manager that I use has the following code:
typedef struct exem exem;
struct exem {
tiposdedado variavel;
};
I did not find in the community anything that clarified my doubt, so let's go!
In the example below, I do not know why water loads, the margin property of the elements p and h1 exceed the limit of the parent element....