hi all, i have a vector containing some arrays,now when i want to extract these arrays from the vector then how should i do it.because if i just write the following: arrayname = vector.firstElement(); then i get the following error: testframenew.java:409: incompatible types found : java.sql.Array required: int[] arr1 = (Array)stringreceive.firstElement(); please suggest some solution,i would appreciate it.. regards karan PS- arrayname is an array of type int..
Manfred Leonhardt
Ranch Hand
Joined: Jan 09, 2001
Posts: 1492
posted
0
Hi Karan, When you retrieve vector elements you must cast them back into the correct objects. In your case: arrayname = (int[])vector.firstElement(); should work. Manfred.