Re: [sqlite] Update DataGrid and Save to database

2016-06-13 Thread R.A. Nagy
Most people seem to prefer black these days, but white is cooler. Reflects,
rather than absorbs, heat.

Of course, if you live up north that might be a bad thing. Here in the
south, all is well...



On Mon, Jun 13, 2016 at 9:31 AM, Chris Locke 
wrote:

> Great analogy.  PS: What colour seat covers should I be using if I have a
> Ford?
>
> On Mon, Jun 13, 2016 at 2:11 PM, jumper  wrote:
>
> > Thank you for the advice/information. I just solved the issue about a
> > minute ago. How can I stop getting new replies?
> >
> >
> > On 6/13/2016 8:08 AM, R Smith wrote:
> >
> >>
> >>
> >> On 2016/06/13 2:48 PM, jumper wrote:
> >>
> >>> New to SQLite and DataGrids. I need to know how to get an adapter,
> table
> >>> and dataset when app first comes up.
> >>> Then when someone updates the DataGrid I need to save the changes to
> the
> >>> database.
> >>>
> >>> I've been working on this for days and can't do it. Could someone
> please
> >>> post the code for how to do it?
> >>> Thank you so much,
> >>>
> >>
> >> Hi John,
> >>
> >> These questions you ask are about creating user-interfaces for databases
> >> and adapters in some GUI systems - none of which is remotely related to
> the
> >> inner workings of the SQLite DB engine or answerable on this forum. It's
> >> like you want to know where the gas pedal and steering wheel is in your
> >> car, and now contacting the Engine manufacturer to ask. We don't really
> >> know.
> >>
> >> I'm assuming the platforms you use may be MSVC, C++ or Delphi or some
> >> other GUI type creator - try their forum or community, or perhaps even a
> >> google search for a tutorial stating exactly the tools you use.
> >>
> >>
> >> Good luck!
> >> Ryan
> >>
> >>
> >> ___
> >> sqlite-users mailing list
> >> sqlite-users@mailinglists.sqlite.org
> >> http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users
> >>
> >
> > ___
> > sqlite-users mailing list
> > sqlite-users@mailinglists.sqlite.org
> > http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users
> >
> ___
> sqlite-users mailing list
> sqlite-users@mailinglists.sqlite.org
> http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users
>
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] Update DataGrid and Save to database

2016-06-13 Thread Chris Locke
Great analogy.  PS: What colour seat covers should I be using if I have a
Ford?

On Mon, Jun 13, 2016 at 2:11 PM, jumper  wrote:

> Thank you for the advice/information. I just solved the issue about a
> minute ago. How can I stop getting new replies?
>
>
> On 6/13/2016 8:08 AM, R Smith wrote:
>
>>
>>
>> On 2016/06/13 2:48 PM, jumper wrote:
>>
>>> New to SQLite and DataGrids. I need to know how to get an adapter, table
>>> and dataset when app first comes up.
>>> Then when someone updates the DataGrid I need to save the changes to the
>>> database.
>>>
>>> I've been working on this for days and can't do it. Could someone please
>>> post the code for how to do it?
>>> Thank you so much,
>>>
>>
>> Hi John,
>>
>> These questions you ask are about creating user-interfaces for databases
>> and adapters in some GUI systems - none of which is remotely related to the
>> inner workings of the SQLite DB engine or answerable on this forum. It's
>> like you want to know where the gas pedal and steering wheel is in your
>> car, and now contacting the Engine manufacturer to ask. We don't really
>> know.
>>
>> I'm assuming the platforms you use may be MSVC, C++ or Delphi or some
>> other GUI type creator - try their forum or community, or perhaps even a
>> google search for a tutorial stating exactly the tools you use.
>>
>>
>> Good luck!
>> Ryan
>>
>>
>> ___
>> sqlite-users mailing list
>> sqlite-users@mailinglists.sqlite.org
>> http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users
>>
>
> ___
> sqlite-users mailing list
> sqlite-users@mailinglists.sqlite.org
> http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users
>
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] Update DataGrid and Save to database

2016-06-13 Thread R Smith



On 2016/06/13 3:09 PM, jumper wrote:

I just solved it only seconds ago. Can't believe it after all this time.
How do I stop getting messages now that I have it working?


Have you read this e-mail all the way to the bottom?
:)
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] Update DataGrid and Save to database

2016-06-13 Thread jumper
Thank you for the advice/information. I just solved the issue about a 
minute ago. How can I stop getting new replies?



On 6/13/2016 8:08 AM, R Smith wrote:



On 2016/06/13 2:48 PM, jumper wrote:
New to SQLite and DataGrids. I need to know how to get an adapter, 
table and dataset when app first comes up.
Then when someone updates the DataGrid I need to save the changes to 
the database.


I've been working on this for days and can't do it. Could someone 
please post the code for how to do it?

Thank you so much,


Hi John,

These questions you ask are about creating user-interfaces for 
databases and adapters in some GUI systems - none of which is remotely 
related to the inner workings of the SQLite DB engine or answerable on 
this forum. It's like you want to know where the gas pedal and 
steering wheel is in your car, and now contacting the Engine 
manufacturer to ask. We don't really know.


I'm assuming the platforms you use may be MSVC, C++ or Delphi or some 
other GUI type creator - try their forum or community, or perhaps even 
a google search for a tutorial stating exactly the tools you use.



Good luck!
Ryan


___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] Update DataGrid and Save to database

2016-06-13 Thread jumper

I just solved it only seconds ago. Can't believe it after all this time.
How do I stop getting messages now that I have it working?

thank you so much.

On 6/13/2016 8:04 AM, Chris Brody wrote:

I wonder if the answers following link could help you:
http://stackoverflow.com/questions/19617368/sqlite-database-and-datagrid

I found this by a quick Google search. For the future please explain
the context, show that you have done some basic research, show what
you have found, and show specifically where you are getting stuck. (I
am guessing this is DataGrid for .NET but have no way to know for sure
what you are asking.)

If you get stuck somewhere you can also ask on Stack Overflow but
please explain these things and also double-check their rules.

On Mon, Jun 13, 2016 at 2:48 PM, jumper  wrote:

New to SQLite and DataGrids. I need to know how to get an adapter, table and
dataset when app first comes up.
Then when someone updates the DataGrid I need to save the changes to the
database.

I've been working on this for days and can't do it. Could someone please
post the code for how to do it?
Thank you so much,

john
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] Update DataGrid and Save to database

2016-06-13 Thread R Smith



On 2016/06/13 2:48 PM, jumper wrote:
New to SQLite and DataGrids. I need to know how to get an adapter, 
table and dataset when app first comes up.
Then when someone updates the DataGrid I need to save the changes to 
the database.


I've been working on this for days and can't do it. Could someone 
please post the code for how to do it?

Thank you so much,


Hi John,

These questions you ask are about creating user-interfaces for databases 
and adapters in some GUI systems - none of which is remotely related to 
the inner workings of the SQLite DB engine or answerable on this forum. 
It's like you want to know where the gas pedal and steering wheel is in 
your car, and now contacting the Engine manufacturer to ask. We don't 
really know.


I'm assuming the platforms you use may be MSVC, C++ or Delphi or some 
other GUI type creator - try their forum or community, or perhaps even a 
google search for a tutorial stating exactly the tools you use.



Good luck!
Ryan


___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] Update DataGrid and Save to database

2016-06-13 Thread Chris Brody
I wonder if the answers following link could help you:
http://stackoverflow.com/questions/19617368/sqlite-database-and-datagrid

I found this by a quick Google search. For the future please explain
the context, show that you have done some basic research, show what
you have found, and show specifically where you are getting stuck. (I
am guessing this is DataGrid for .NET but have no way to know for sure
what you are asking.)

If you get stuck somewhere you can also ask on Stack Overflow but
please explain these things and also double-check their rules.

On Mon, Jun 13, 2016 at 2:48 PM, jumper  wrote:
> New to SQLite and DataGrids. I need to know how to get an adapter, table and
> dataset when app first comes up.
> Then when someone updates the DataGrid I need to save the changes to the
> database.
>
> I've been working on this for days and can't do it. Could someone please
> post the code for how to do it?
> Thank you so much,
>
> john
> ___
> sqlite-users mailing list
> sqlite-users@mailinglists.sqlite.org
> http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users


[sqlite] Update DataGrid and Save to database

2016-06-13 Thread jumper
New to SQLite and DataGrids. I need to know how to get an adapter, table 
and dataset when app first comes up.
Then when someone updates the DataGrid I need to save the changes to the 
database.


I've been working on this for days and can't do it. Could someone please 
post the code for how to do it?

Thank you so much,

john
___
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users