0
votes
1answer
31 views

JDBC ResultSet Cusor Position

I have inherited some third party code using an old version of org.gjt.mm.mysql.Driver jdbc mysql driver class against a mysql database. The code appears to perform an executeQuery, storing the ...
0
votes
0answers
14 views

lwjgl cursor is not set on the centre of the mouse pointer amongst other LWJGL cursor issues

I am having some trouble with LWJGL cursors. After much confusion I have figured out how to get it to appear, but it is not centered on the mouse pointer. In addition it appears over the edge of the ...
0
votes
1answer
38 views

Load selected fields from ArrayList to ListView.

I would like to load only selected fields from my ArrayList to ListView. I couldn't find that example so I ask. I have an ArrayList of a structure as follows: ArrayList<LogInfo> logInfoArray ...
1
vote
1answer
25 views

Couldn't read row 384, col 47 from CursorWindow. Make sure the Cursor is initialized correctly

I'm reading some data from Android calendar and sometimes I got strange crash reports from users like: java.lang.IllegalStateException: Couldn't read row 384, col 47 from CursorWindow. Make sure the ...
0
votes
0answers
29 views

Changing cursor outside application

I was wondering, is it possible to change mouse cursor image outside my Java application window? I already found out how to make custom cursor images, and how to change it on components, but in my ...
0
votes
2answers
53 views

Couldn't read row 0, col 9 from CursorWindow

I'm getting the error Couldn't read row 0, col 9 from CursorWindow. Make sure the Cursor is initialized correctly before accessing data from it. Two other people are able to run the code without ...
0
votes
0answers
20 views

Understanding the difference between Cursor API and Iterator API of StAX

Ok, when learning how to process XML with StAX API. I saw that it has 2 ways to get the XML document parsed namely: Cursor API Iterator API The Cursor API is where you use XMLStreamReader and ...
1
vote
1answer
50 views

Why do I need to hover my mouse over a button for it to show up?

I got a issue here, my buttons were working fine until I added a background image, when I try to put my mouse over the buttons and textfield for them to show. My labels also don't work either ...
1
vote
1answer
44 views

Paint a java.awt.Cursor on a java.awt.Graphics

Is it possible to get hold of a standard AWT Cursor in the form of a bitmap image (e.g. BufferedImage) or anything paintable on a Graphics2D? For example, the text cursor new ...
0
votes
1answer
55 views

Android - Wanting to alternate icon images in a listview using cursorLoader

I have an application that displays a listView of contacts sorted by Last, then first names. Beside each contact is an image (icon). There are 3 kinds of contacts for which I'd like to display 3 ...
1
vote
1answer
27 views

Painting a custom Mouse over your preset mouse

I'm making a game and when I add my sprites to my screen, naturally, they are behind my mouse. But I want to add a custom mouse image to my screen, over the mouse. I already have sprites for the ...
-2
votes
1answer
60 views

Android: Reading from cursor or database [closed]

Sometimes reading a cursor from Database in android can be tricky, and checking if the cursor is actually empty or null is also dificult sometimes. How should I handle this?
0
votes
2answers
59 views

Correct order for closing various JDBC objects

I have the following code sample: try { conn = this.jdbcTemplate.getDataSource().getConnection(); stm = conn.prepareCall("{? =" + query + "}"); stm.registerOutParameter(1, ...
0
votes
2answers
29 views

How to implement EndCursors in GAE/J - JDO

I have a GAE/J app using JDO on top of the Datastore and I've been able to paginate query results using cursors. The default implementation is something we call startCursor in my team (i.e give me ...
0
votes
0answers
59 views

Android Sqlite Cursor failed to get the next value from index [closed]

I'm creating a quiz game where the questions are displayed (TEXTVIEW) randomly and the user have to type in his answer using an EDITTEXT. My problem is whenever I try to move to the (2nd)next ...
0
votes
1answer
38 views

My SQLite query causes a cursorindexoutofbounds exception when the column in the WHERE clause is empty. How do I stop this?

This error only occurs when the column COLUMN_NAME_DATE is empty (no entries have been made in that table). Once I add some entries, it works fine. I have tried all sorts of null checks, and what ...
0
votes
1answer
58 views

Wrong values returned from cursor

It look like complete paranormal activity to me. I got this little function converting database data into objects: public List<BudgetSummary> getMonnthlyBalance() { ...
0
votes
3answers
129 views

SimpleCursorAdapter does not load external sqlite database: “_id” error

The error says: column _id does not exists but the column is in the database (set as primary key) and this one is located in the external SD folder. I'm trying to return the values contained in the ...
1
vote
1answer
623 views

Calling Oracle stored procedures with MyBatis

I am in the process of moving our database over to Oracle from SQL Server 2008 but cannot get MyBatis to work. Given the following example: UserMapper.xml (example) <resultMap type="User" ...
4
votes
1answer
132 views

How is Android database cursor implemented in details?

I'm interesting about the implementation details of the Cursor in Android. Is is just some data structure which stores result set from database Or it is some structure which handles only one row? ...
0
votes
0answers
86 views

How to change the Cursor size?

I want to change the size of Cursor in java. So please can somebody tell me how can i do this. i have searched on google but i did not find any solution. Below is my code from which i am trying to ...
2
votes
1answer
212 views

Rare behavior with mongodb cursor (DBCursor) in java, even though last element is already reached

I have a collection called MyCollection that contains 200 elements in the bd MyDB in mongodb > use MyDB switched to db MyDB > db.MyCollection.count() 200 I'm getting a really rare behavior, ...
1
vote
1answer
46 views

Am I asking for issues with this returned cursor?

Basically I have a method that populates a listview from my database. I am receiving both null pointers on a cursor and 'unable to stop activity' errors. This is how I am returning my cursor: ...
0
votes
1answer
254 views

Calling Oracle DB Function with ref cursor as input from Java program

I am facing this technical challenge first time. I have researched for 3 days before posting this question and have not found any solution yet. My Problem is "Calling Oracle DB Function (which takes ...
1
vote
3answers
92 views

Own ActionListener with anonymous implementation? (busy cursor)

ActionListeners (with anonymous implementation) are usally added like: someobject.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent ae){ ... } }); But ...
0
votes
1answer
155 views

How to remove duplicate rows in a Cursor (Android SDK)?

Currently, I have made 3 queries (resulting in 3 cursors), and then I merged the cursors using the MergeCursor class. However, this has caused duplicates in the cursor, and I can't seem to find a way ...
0
votes
0answers
48 views

SQLite : verification if value exist

Basicly, i want to verify if a usename is not already written in the Database. Since i'm pretty new, i don't know how to do and tried that, but i'm getting error with this codes. I seriously don't ...
0
votes
2answers
56 views

SQLite Cursor crashes

i have a problem with my SQLite class. In fact, i was learning how to setting up (update and read) a database on android and I successfully wrote on the database, but when i try to read the ...
0
votes
1answer
140 views

Android CursorWindowAllocationException

I'm getting this error : E/AndroidRuntime(8223): Caused by: android.database.CursorWindowAllocationException: Cursor window allocation of 2048 kb failed. # Open Cursors=940 (# cursors opened by this ...
2
votes
2answers
161 views

Larger cursor in Java

Is there a possibility to create a larger cursor (by the method createCustomCursor()) than the predefined 32x32 in Windows (e.g. 64x64 or even more)? Toolkit toolkit = Toolkit.getDefaultToolkit(); ...
1
vote
1answer
93 views

SWT Table don't see items from other columns

I added columns on code: String[] titles = {"Nazwa", "Uzytkownik", "Haslo"}; for(int i=0; i<titles.length; i++){ TableColumn column = new TableColumn(table, SWT.NULL); ...
0
votes
1answer
56 views

How do you change the cursor image?

I am coding a game in Java and I am wondering how one can change the appearence of the cursor to another design. I am also using LWJGL and slick if that is any help for the people answering this ...
0
votes
4answers
250 views

JAVA Getting data from Database Without a loop

I am Programming a software with JAVA and using the Oracle DB. Normally we obtain the values from the Database using a Loop like Resultset rt = (Resultset) cs.getObject(1); while(rt.next){ ...
1
vote
2answers
73 views

Android OnBootReceiver Crashing Exception NullPointer

My On Boot Receiver keeps crashing : 01-06 03:20:13.861: E/AndroidRuntime(15832): FATAL EXCEPTION: main 01-06 03:20:13.861: E/AndroidRuntime(15832): java.lang.RuntimeException: Unable to start ...
0
votes
0answers
103 views

cursor.getCount() returning wrong count using rawQuery

I have used rawQuery to fetch records from DB table. I have checked the query from log and it is executing perfectly in SQLite. But the cursor.getCount is returning wrong row count and cursor ...
2
votes
1answer
27 views

Empty list trouble with cursor

I´ve a problem with my List<String> List<String> werte = new LinkedList<String>(); if(c.moveToNext()){ werte.add(c.getString(c.getColumnIndex("fragencount"))); } String size ...
1
vote
1answer
174 views

want to change the cursor on mouse move on JTree listed elements

I want to change the cursor to hand cursor on mouse move over JTree component when the cursor is on listed elements only, not for the whole component. The below code is for Jlist Component. I want ...
0
votes
2answers
103 views

why am i getting Null Pointer Exception?

I am fetching data from a database using this code : Cursor cursor = db.query(News_Table, null, null, null, null, null, null); if (cursor != null) { cursor.moveToFirst(); } allNews = new ...
1
vote
2answers
117 views

Right aligned cursor not showing through in a JTextPane component

I have a JTextPane sandwiched between 2 JLabels - is there a known reason why the cursor shows through if i have it on the left most part of the textpane but not on the right? Here is the code to ...
0
votes
2answers
167 views

Cursor Adapter and Multiple Columns Android

I have a listfragment that I'm populating with a simplecursoradapter. However, only the first column is getting binded to the layout. Here is the code. public class ContactList extends ListFragment ...
0
votes
0answers
102 views

Android: ORMLite cursor with join statement not working

Before I give up and just use a ArrayAdapter with ORMLite objects I'd like to tell you about my problem. First the experimentation/demonstration code: Context context; AndroidDatabaseResults ...
1
vote
2answers
443 views

JavaFX 2 set/get cursor position

How can I set/get the cursor's position in JavaFX 2? I tired googling the answer but found nothing useful. All i can do is setting the cursor's style.
2
votes
1answer
132 views

MouseInfo.getPointerInfo() - how to get cursor view

With MouseInfo.getPointerInfo() there is a way to get mouse x,y position which are outer the Java app... And it is fine But what about the mouse cursor view itself? I mean is there a way to know is ...
0
votes
1answer
121 views

SQLite high scores, CursorIndexOutOfBounds - Android

I commented in the code below in both spots the IOOF exception is happening. I know for sure through testing that the db creates correctly and I am able to insert into it. I am trying to integrate ...
0
votes
3answers
272 views

NullPointerException on cursor RawQuery - Android

I am trying to create a db, insert into the db, pull from the db and display the contents (long) to a TextView. I think I am creating and inserting into the db correctly. In my getScore() method I ...
0
votes
2answers
294 views

Inserting into and withdrawing from SQLite database and displaying to a TextView - Android

I am trying to implement a SQLite database for a highscores table. I am just testing it to see if my database creation, insertion and selecting is working with the below code. I am trying to insert ...
1
vote
1answer
110 views

NullPointerException when moving with cursor (SQLite) in a switch statement

So I am getting a NullPointerException every time I click on any of the buttons. For some reason, when I am in the switch statement, I get an error. My DB helper class simply returns a cursor and so I ...
0
votes
2answers
61 views

Cursor doesn't seem to be working in android app

My cursor do not seem to be working. Can somebody please help me? Actually the for loop here is not working. The log is not being shown. This is my code: public String getAFact(int rowNumber) { ...
0
votes
1answer
54 views

What is the appropriate way to scale the cursor in Java?

I have a piece of code that scales a JPanel in the paintComponent() method as follows: g2d.translate(this.getWidth()/2, this.getHeight()/2); g2d.scale(scale, scale); g2d.translate(-this.getWidth()/2, ...
2
votes
1answer
67 views

How to set Cursor to a Particular Cell of a SWT Tree

I have a SWT Tree, and I want to set the cursor to a particular cell of that SWT Tree. I have access of TreeViewer. The screenshot below shows the cursor at column 1. I did it manually, but I want to ...

1 2 3 4 5