Posts by HagaHood • 700 points
35 posts
-
1
votes1
answer60
viewsQ: Insert not exist duplicating records
tou with a problem in SQL server 2008 I have to enter an occurrence of the credit card data however the query is not taking place the way I needed. The tables are CREATE TABLE TEMP_DADOS_CARTAO (…
-
0
votes1
answer424
viewsQ: How to run event right after $('div'). load(url)?
I want to know how to make one $('#div-search').on('load', ()=>{alert('carregou');}); I have a div where there are several $('#div-search').load(url) in the code. however now I need to perform a…
-
0
votes0
answers50
viewsQ: how to view SQL executed by sqlsrv_query
I run the following code: $sql = "UPDATE [dbo].[NOTA_FISCAL] SET [STATUS] = ?, [USUARIO]= ?, DATA_TRATAMENTO = (getdate()), [MOTIVO_CANCELAMENTO] = ? WHERE [ID_NOTA_FISCAL] = ?"; $params =…
-
0
votes1
answer273
viewsQ: using SFTP in php 5.3 with phpseclib
I’m trying to use the phpseclib to download with php 5.3. yet I’m not getting it to work. my test is this code: <html> <head> <meta charset="UTF-8"> <title></title>…
-
0
votes0
answers198
viewsQ: yum Import: No module named cElementTree
I am trying to install a Microsoft server on my linux, but when trying to install yum started to present this error for all that is package yum install scm-server Plugins carregados: fastestmirror,…
-
1
votes2
answers98
viewsA: MS SQL server Storeprocedure returning resultset
I found!!! sql server returns a result for each command within SP, this tbm include the Insert/updates/Deletes among others, informing the amount of affected lines. for this you have to go…
-
0
votes2
answers98
viewsQ: MS SQL server Storeprocedure returning resultset
I am new to SQL server and I need to create an SP that does the processing of certain tables and save changes and after giving me the result of these changes as a table-value Function for PHP. tried…
-
0
votes2
answers2566
viewsA: Netbeans Xdebug Does Not Work
add the following section in your php.ini [XDebug] zend_extension_ts = "./php/ext/php_xdebug<version>.dll" xdebug.remote_enable=1 xdebug.remote_autostart = 1 xdebug.remote_host=127.0.0.1…
-
2
votes2
answers2715
viewsA: Xdebug in Xampp
add the following section in your php.ini [XDebug] zend_extension_ts = "./php/ext/php_xdebug<version>.dll" xdebug.remote_enable=1 xdebug.remote_autostart = 1 xdebug.remote_host=127.0.0.1…
-
3
votes0
answers398
viewsQ: Configure Xdebug phpstorm
I have Xampp + Xdebug up and running in netbeans, however I started using the ide phpstorm and it doesn’t work at all my php.ini is like this: [XDebug] zend_extension = "php_xdebug.dll"…
-
1
votes1
answer1046
viewsQ: Locking commit in git - lock option
I’m tasked with deploying a versioning system here at the company. However I am in doubt between SVN and Git. My question is whether git has something that does the same as git lock of the SVN, that…
-
3
votes1
answer2204
viewsQ: Firedac -How to use the same Fdquery in more than one bank?
I heard that the FD has to program for two different database managers using the same FDQuery, that is, could put the two SQL s of each bank in the same FDQuery... or something like that... Hold on…
-
0
votes1
answer147
viewsQ: customFormat Livebindings Couldn’t find ifthen
I’m trying to use an inverted livebindigs, that is, I have a Boolean field that comes from the database and I have to make visible a button when it comes false. I’m putting in the customformat…
-
0
votes1
answer410
viewsQ: Creating Report Inside a Panel
I need to display a report in a determined system area( in the right half) already in the left half want to put other components( as mode buttons and display and other options for printing) How…
-
1
votes1
answer210
viewsQ: Magical Property- Insert properties into another component
I’m working with flowpanel in the Delphi and I noticed that he adds one more property to the objectInspector, the control index, for objects inserted in it. I wanted to know how this is done, if I…
-
1
votes1
answer720
viewsQ: Incompatible type: method Pointer and regular Procedure
I have a calendar only with month/year and created an "event" so that, when it was selected, the month could be treated and the fields filled. type TonAnoMesSelecionadoEvent =…
-
8
votes1
answer5127
viewsQ: Convert String to Float with Java comma
How do I convert in an elegant way String for float java? The strings are with the Brazilian localization, that is, the values come with comma as decimal separator ("12.345"). I find it so... "ugly"…
-
1
votes0
answers91
viewsQ: How to configure DB via an environment variable?
I have a multi-client JSP application. Currently the database configuration is in a file variable.propriet, and obtain through the method private static String getUrlBanco() { ResourceBundle b =…
-
0
votes1
answer25
viewsQ: How to Execute a Method in Completing the Section?
I need to execute a certain method when the section is closed (when the user clicks to close the browser). I’m working with JSP and I don’t know how I can do it.
-
0
votes2
answers1556
viewsQ: Quickreport Save PDF by Default
My reports always have the Tqrpdffilter component, so they can be exported to PDF. However the client is complaining that when clicking save, he still has to select the format you want to save (in…
-
1
votes1
answer1085
viewsQ: Fastreport error designer
I want to create a report generator on my system, allowing the user to customize the layout of the report. I need to save these reports on banco de dados so that it is accessible to all computers in…
-
1
votes1
answer1135
viewsQ: Justify Qrddrichtext
I’m creating a report in Delphi using the QuickReport. In the Database I write a formatted text (this eh, with justified parts, others aligned to the left other centralized). To justify the text in…
-
2
votes1
answer106
viewsQ: Java class version
I wonder if in java I can specify a tag, or manifest, or something like that for a class or library and be able to query it within the Java code itself guy : @version 2.6.5 Class Pessoa { ... } and…
-
13
votes3
answers753
viewsQ: Does Java have a class to work with command line arguments?
I need to create a Java desktop app, and with it pass several parameters of the type: java meuapp.jar -DB c: base.db -user admin -password admin Is there an easy way to get these parameters?…
-
3
votes1
answer1289
viewsQ: Foreach with Lambda does not work
I have a list of objects I want to go through, but it’s giving error and I’m not understanding why: listaAtendimento.stream().forEach(atendimentoFicha -> {…
-
1
votes2
answers1616
viewsQ: Locating Object in a List
I have the following objects public class Passo { private Long id; private Date dataAtend; private Time horaRealizada; private Long idProfissionalRealizador; private String Descricao; /*getter &…
-
1
votes0
answers88
viewsQ: how does Zconnectongroup work?
Has anyone used zconnectiongroup? I have to import several cvs files into the FB database, Then I thought to import in several connections, to be faster(since each connection would use a core). I…
-
3
votes3
answers644
viewsQ: Discovering the SQL of a Resultset
I have a Resultset java object that I don’t know the SQL/parameters that generated it. Would you like to know how to get the SQL used to create it? would have something like : rs.getStm.getSql ?…
-
0
votes1
answer256
viewsA: Pass Function Ajax Encryption
To solve the problem I had to change the following teste2.jsp <%@page import="Base.Utils"%> <%@page import="java.util.List"%> <%@page import="java.util.Date"%> <% String sinal =…
-
1
votes1
answer256
viewsQ: Pass Function Ajax Encryption
I’m trying to get an Alert back from the server, but I’m not getting it. the idea would be as follows index.jsp <html> <head> <title>Teste</title> <link rel="stylesheet"…
-
3
votes1
answer624
viewsA: "The resultset is closed" error with Preparedstatement
Part of the problem was the outdated Jaybird driver suit. this was in version 2.1.6 and she had this error http://tracker.firebirdsql.org/browse/JDBC-304 Another detail is that I need to call…
-
4
votes1
answer624
viewsQ: "The resultset is closed" error with Preparedstatement
I’m getting it when I’m walking through a ResultSet and get other ResultSets: public class BpaDetDao extends DaoAbstract<BpaDetBean> { public static final String // TODO Colocar campos no…
-
1
votes1
answer3521
viewsQ: Discover the object class in Java
I have a set of functions to configure a set of parameters in Java like this: public void Util.setParametros(Integer par) {} public void Util.setParametros(String par) {} public void…
-
1
votes1
answer1345
viewsQ: Primeface uploadFile + graphicImage: Upload image and display without refresh
I’m starting to program on jsf + primefaces. A long time ago I worked with JSP(java 1.4) and I’m kind of lost. I’m looking to upload an image and have it displayed below. xhtml images. <?xml…
-
1
votes1
answer2414
viewsQ: How do I group Groupheader over more than one field?
I am making a report in Fastreport that returns demonstrates the following fields: codigo cliente nome cliente data do atendimento codigo atendente nome Atendente codigo atendimento motivo do…