<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to support-requests</title><link>https://sourceforge.net/p/openbasemovil/support-requests/</link><description>Recent changes to support-requests</description><atom:link href="https://sourceforge.net/p/openbasemovil/support-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Sat, 27 Mar 2010 06:36:33 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/openbasemovil/support-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>Database Creation</title><link>https://sourceforge.net/p/openbasemovil/support-requests/6/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi All,&lt;/p&gt;
&lt;p&gt;I am trying to create database in OpenBaseMovil . It's working in my Nokia emulator and device. But coming to SonyEriccson the database is not getting created and no proceeding further in my application. Execution stops at the statement&lt;/p&gt;
&lt;p&gt;System.out.println("Creating database ... ");&lt;br /&gt;
Database database = Database.create("TestDB");&lt;br /&gt;
System.out.println("Created database ... ");&lt;br /&gt;
Can Anyone plz help me on this issue?&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;br /&gt;
Narayana&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sat, 27 Mar 2010 06:36:33 -0000</pubDate><guid>https://sourceforge.net29f2fd7162188bf11fbb5216b785114845150532</guid></item><item><title>how to use SQL script</title><link>https://sourceforge.net/p/openbasemovil/support-requests/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;hi, I couldn't find any documnetation explaining how can I use the SQL scripting described in the OpenBaseMovil-DB manual from a midlet.&lt;br /&gt;
For example if I like to write a select on a given table(s) or do a TRUNCATE operation on a given table.&lt;br /&gt;
can U guys please provide some code snippets.&lt;/p&gt;
&lt;p&gt;thanks a lot in advance&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 24 Sep 2009 23:00:01 -0000</pubDate><guid>https://sourceforge.net586944140704e72f6087877b3ee2d0396ce3ac69</guid></item><item><title>database problem</title><link>https://sourceforge.net/p/openbasemovil/support-requests/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;br /&gt;
when I excute this code:&lt;br /&gt;
Database db = Database.create( "mydb" );&lt;br /&gt;
after that I delete that code and excute below code:&lt;br /&gt;
Database db = Database.connect( "mydb" );&lt;br /&gt;
db.start();&lt;br /&gt;
but there is this problem:&lt;br /&gt;
bm.db.DBException: bm.storage.InvalidRecordIDException...&lt;br /&gt;
what can I do?&lt;br /&gt;
please help me?&lt;br /&gt;
thanks...&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Mon, 24 Aug 2009 07:18:31 -0000</pubDate><guid>https://sourceforge.neted43ebd6bda715885a7f154113125878f6a6fb90</guid></item><item><title>Setup OpenBaseMovil With EclipseME</title><link>https://sourceforge.net/p/openbasemovil/support-requests/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;br /&gt;
I just trying to get started by setting up the eclipse env. with eclipseme plugi + Sun WTK 2.5&lt;br /&gt;
Trying to compile the same app passwordKeeper from the source on the website.&lt;br /&gt;
Is there any documentation on setting up this env. you could share.&lt;br /&gt;
I seem to be running it several different issues trying to compile this.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 22 Apr 2009 19:37:49 -0000</pubDate><guid>https://sourceforge.netfe96eeea65bff6c63de32edf1bc3659eab696755</guid></item><item><title>Null Pointers using OpenBaseMovil-db</title><link>https://sourceforge.net/p/openbasemovil/support-requests/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I've made this a support request rather than a bug because it seems I'm likely doing something obvious wrong. &lt;/p&gt;
&lt;p&gt;I want to use OpenBaseMovil-db as I have a need to store and then find around 5,000 items. I wrote a simple test that created a database, added a table and inserted one row into it but I was getting NullPointerExceptions. So I whittled the code down to the simplest thing possible - just creating a database. &lt;/p&gt;
&lt;p&gt;I have tried this on the Nokia Series 40 3rd Edition Emulator and Nokia Series 60 3rd Edition Emulator with the same results.&lt;/p&gt;
&lt;p&gt;Any pointers appreciated&lt;/p&gt;
&lt;p&gt;private void createDB() {&lt;br /&gt;
try {&lt;br /&gt;
System.out.println("About to create database");&lt;br /&gt;
Database.create( VIRTUAL_DATABASE_NAME );&lt;br /&gt;
}&lt;br /&gt;
catch(Exception e)    {&lt;br /&gt;
e.printStackTrace();&lt;br /&gt;
}&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;Here is the output:&lt;br /&gt;
[exec] About to create database&lt;br /&gt;
[exec] at bm.storage.Store.close(+116)&lt;br /&gt;
[exec] at bm.db.Database.close(+7)&lt;br /&gt;
[exec] at bm.db.Database.saveHeader(+163)&lt;br /&gt;
[exec] at bm.db.Database.create(+70)&lt;br /&gt;
[exec] at com.shearwell.test.mobile.ui.PerformanceTestUI.createDB(+13)&lt;br /&gt;
[exec] at com.shearwell.test.mobile.ui.PerformanceTestUI.commandAction(+203)&lt;br /&gt;
[exec] at com.shearwell.test.mobile.ui.UIManager.commandAction(+188)&lt;br /&gt;
[exec] at javax.microedition.lcdui.Display.consumeDisplayEvent(+773)&lt;br /&gt;
[exec] at javax.microedition.lcdui.Display$DisplayAccessor.consumeEvent(+109)&lt;br /&gt;
[exec] at com.nokia.mid.impl.isa.ui.EventDispatcher.run(+41)&lt;br /&gt;
[exec] bm.storage.RSException: java.lang.NullPointerException&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tim Corrigan</dc:creator><pubDate>Thu, 24 Jan 2008 09:31:51 -0000</pubDate><guid>https://sourceforge.neta16cc562edacaab8ecc77009c298609a14555e29</guid></item><item><title>Row creation failes</title><link>https://sourceforge.net/p/openbasemovil/support-requests/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;This is the problematic code piece:&lt;/p&gt;
&lt;p&gt;db = Database.create(db_name);&lt;br /&gt;
db = Database.connect(db_name);&lt;br /&gt;
db.start();&lt;br /&gt;
Table table = new Table(table_name);&lt;br /&gt;
table.addColumn("fname", Constants.FT_STRING, false);&lt;br /&gt;
db.createTable(table);&lt;br /&gt;
log("Table created");&lt;br /&gt;
worktable = db.getTable(table_name);&lt;br /&gt;
worktable.open();&lt;br /&gt;
log("Table '"+ worktable.getName() +"' in DB "+ worktable.getParent().getName() +" opened");&lt;br /&gt;
Row row = worktable.createRow();&lt;br /&gt;
log("Row created");&lt;br /&gt;
row.setField("fname", "someName");&lt;br /&gt;
log("Added "+row.getString("fname"));&lt;br /&gt;
log("Row filled");&lt;br /&gt;
row.save(); //HERE THE PROBLEM ARISES&lt;br /&gt;
log("Row saved");&lt;/p&gt;
&lt;p&gt;The log goes until "Row filled", but when executing row.save(), the following error occurs:&lt;/p&gt;
&lt;p&gt;java.lang.NullPointerException&lt;br /&gt;
at bm.db.Table.save(+120)&lt;br /&gt;
at bm.db.Row.save(+15)&lt;br /&gt;
at tests.BMDatabaseTest.doTest(+195)&lt;br /&gt;
at Tester.commandAction(+182)&lt;br /&gt;
at javax.microedition.lcdui.List.callKeyPressed(+80)&lt;br /&gt;
at javax.microedition.lcdui.Display$DisplayAccessor.keyEvent(+198)&lt;br /&gt;
at javax.microedition.lcdui.Display$DisplayManagerImpl.keyEvent(+11)&lt;br /&gt;
at com.sun.midp.lcdui.DefaultEventHandler.keyEvent(+121)&lt;br /&gt;
at com.sun.midp.lcdui.AutomatedEventHandler.keyEvent(+210)&lt;br /&gt;
at com.sun.midp.lcdui.DefaultEventHandler$QueuedEventHandler.run(+178)&lt;/p&gt;
&lt;p&gt;I hope this is not my fault, as I have created and started the DB and opened the table after retrieving it. Hope this is helpful for you, just wanted to help. Thanks&lt;br /&gt;
elisamgb@web.de&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Mon, 21 Jan 2008 14:07:44 -0000</pubDate><guid>https://sourceforge.net9f07368f0677d2d8360483b4df81c28bac005618</guid></item></channel></rss>