Questions tagged as 'array'

0
answers

How to generate the client that shows the data of this service echo in NuSoap

Hello, I have the following web service. <?php function ProcessMySoapObject() { $responce =[10]; for ($i=0; $i <10 ; $i++) { $object = (object) ['Nombre' => 'Nombre'.$i,'Descripcion' =>'Descripcion de la'.$i,'Preci...
asked by 08.12.2016 / 02:05
1
answer

Update the datasource of a jqxGrid

I am filling a grid of JQWIDGETS with data from an array that I form from data entered in inputs text (code, description, price, quantity and total). By giving enter on the input quantity the data is shown in the grid, but this creates an arr...
asked by 05.09.2016 / 17:34
2
answers

JavaNullPointerexception problem in Array

my problem is that I have:    'JavaNullPointerException' in 'kits [k] =   plugin.getPropertiesKit (). getString (b); ' I have this code, int numberKits = 2; int n = 1; int k = 0; int m = 1; //Bucl...
asked by 15.08.2016 / 18:18
0
answers

GUI Delete Fix when Selecting

Thinking that you enter 4 or more values and I try to eliminate any line of those 4 values by selecting the line and pressing a "Delete" button, which method I must implement in < strong> "Delete" , in this case occupy "Hide" . I need yo...
asked by 05.05.2016 / 17:06
2
answers

Check differences of two array in PHP

I'm trying to check the difference of two arrays to insert or delete data in MySQL but the code I have fails a lot and the same is another way to make it more appropriate, but I do not know it. The code of the comparator and the function to e...
asked by 05.05.2017 / 13:26
1
answer

Predetermine values in a Java vector

Hello friends I want that in a vector using System.out.print You can predetermine values in the vector, example: Alumnos[] - I want to predetermine values .. as names in the case of that vector, in JAVA, please help me?.     
asked by 18.05.2016 / 05:51
2
answers

Send ArrayListT from android to webservice asp.net

I am working with an asp webservice that receives me as a list parameter, in android I am using the ksoap2 library which does not support sending this type of parametyros without being patched before. Is there an alternative to this library or d...
asked by 02.08.2016 / 16:52
1
answer

Create an array in PL / SQL of MySQL

I am trying to create an array in MySQL as it is done in Oracle for a procedure ( procedure ), but I can not get it. With this code I am trying: # .... Código .... # DECLARE type array_letras IS VARRAY(6) OF VARCHAR(1); letra array...
asked by 23.04.2016 / 17:52
4
answers

How to use ArrayList in JavaScript

I need to use a ArrayList in JavaScript to manipulate data and pass it through ajax. For example: Set what type of transport it is, make, year and color. eg var data = {"Automobile", "Nissan", "2010", "Red"} Problem: What I n...
asked by 28.01.2018 / 06:46
4
answers

How to use an array of an object

I have a class Alumnos where I declare a Array of three elements: public class Alumnos extends Persona { private int numeroExpediente; private int nota[]; public Alumnos() { numeroExpediente=0; int not...
asked by 22.08.2017 / 14:33