Re: [android-developers] Re: How to get and post JSON with Android?

2012-09-05 Thread sanandiya rajesh
On Mon, Sep 3, 2012 at 9:44 AM, sanandiya rajesh <
sanandiya.rajes...@gmail.com> wrote:

>
> Hi
>
>I am android developer. Recently i made one application connection with
> sql server with my android application.I use JTDS lib driver for
> connection.My application completely running in android 2.2,2.3. But i run
> Application HCL me u1 (android4.0.3) it give exception.
> Java:sql:Exception:BUFFERDIR connection property invalid.
> What is solution for that
> Please give me Answer.
>
> One more Question, JTDS not Supported Android4.0.3?
>
> Thank you
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] hi..

2012-09-11 Thread Sanandiya Rajesh
See Attachfile, this is database adapter class file.
you can use this class in your activity.
DatabaseAdapter db = new DatabaseAdapter(context);
than use db for insert update delete .
create method in  DatabaseAdapter for insert update delete.

On Wed, Sep 12, 2012 at 10:37 AM, Ibrahim Sada wrote:

> Hello Friends...
> Help me out how to create multiple tables in sqllite database (
> android).
>  Thanx in advance...
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

DatabaseAdapter.java
Description: Binary data


Re: [android-developers] sqlite database

2012-09-12 Thread Sanandiya Rajesh
use Attach Java class.
when u like to insert add following code in your java file.
DatabaseAdapter db = new  DatabaseAdapter(getApplicationContext());
dba.open();
dba.insertLevel(1,"anything");
dba.close();



On Thu, Sep 13, 2012 at 10:20 AM, mohammed Nuhail wrote:

> how to insert data once in sqlite database programatically ?
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

DatabaseAdapter.java
Description: Binary data