[sqlite] How to access values of a columns with specific row id.

2012-01-31 Thread bhaskarReddy
Hi Friends, Can any one tell me how to access values of a table column with its particular row id. I tried with "select * from ontTable where rowid=2;" I am getting the output as 1|2|3|XYZ234|4|ABCD123|5. Here i want the

Re: [sqlite] How to access values of a columns with specific row id.

2012-01-31 Thread Larry Knibb
select columnName from ontTable where rowid = 2; select * gets you all of the columns for the row. select columnName will just get one column. Cheers, Larry On 31 January 2012 17:05, bhaskarReddy wrote: > > Hi Friends, > > >               Can any one tell me how to access

Re: [sqlite] How to access values of a columns with specific row id.

2012-01-31 Thread Petite Abeille
On Jan 31, 2012, at 10:05 AM, bhaskarReddy wrote: > Can any one tell me how to access values of a table column with its > particular row id. In general, I would suggest that you get the basics straight: http://www.sqlite.org/books.html > I tried with "select * from ontTable where rowid=2;"

Re: [sqlite] Is there any API for counting number of rows in a particular table.

2012-01-31 Thread Tim Streater
On 30 Jan 2012 at 21:58, Bart Smissaert wrote: > OK, so how you open those then with SQLiteRoot? I use PHP, thus: $dbh = new PDO ("sqlite:" . $db); where $db is a string like "/path/to/database". I don't know what SQLiteRoot is although possibly I should do.

Re: [sqlite] Is there any API for counting number of rows in a particular table.

2012-01-31 Thread Bart Smissaert
SQLiteRoot is a free SQLite manager managed in this thread. I downloaded and tried it, but couldn't figure out how to open databases with an extension other than the default for that app, which I think was .slt Nil to do with SQLite really. RBS On 1/31/12, Tim Streater

[sqlite] How to find number of columns and types in a table.

2012-01-31 Thread bhaskarReddy
Hi Friends, Is there any way to find the number of columns and column types in a table. I tried with "select count(*) from tablename". But it is showing number of records. Regards, Bhaskar. -- View this message in context:

Re: [sqlite] How to find number of columns and types in a table.

2012-01-31 Thread Bart Smissaert
http://www.sqlite.org/faq.html#q7 RBS On 1/31/12, bhaskarReddy wrote: > > Hi Friends, > > Is there any way to find the number of columns and column > types in a table. > >I tried with "select count(*) from tablename". But it is > showing number

Re: [sqlite] Is there any API for counting number of rows in a particular table.

2012-01-31 Thread Fabio Spadaro
Hi 2012/1/30 Bart Smissaert > How do you make it open database files that have an extension other than > .slt? > > RBS Tonight I will see to create a new version with bug fixes. Meanwhile you could give me some feedback such as opening a file with any extension by

[sqlite] sqlite mobile size capacity

2012-01-31 Thread Live Happy
what is the maximum size of sqlite on the mobiles phone (android, iPhone, blackberry, windows mobile) its the same on all of them ? and in wish of them sqlite more compatibility and the performance of it is high thx for answer ___ sqlite-users mailing

Re: [sqlite] sqlite mobile size capacity

2012-01-31 Thread Petite Abeille
On Jan 31, 2012, at 12:33 PM, Live Happy wrote: > thx for answer You asked the very same on January the 28th. Are you a bot? ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] sqlite mobile size capacity

2012-01-31 Thread Live Happy
yeh i did ask but get no answer so may u answer me now On Tue, Jan 31, 2012 at 1:58 PM, Petite Abeille wrote: > > On Jan 31, 2012, at 12:33 PM, Live Happy wrote: > > > thx for answer > > You asked the very same on January the 28th. Are you a bot? > >

Re: [sqlite] sqlite mobile size capacity

2012-01-31 Thread Simon Slavin
On 31 Jan 2012, at 12:08pm, Live Happy wrote: > yeh i did ask but get no answer so may u answer me now Not getting an answer does not mean you should post the question again. It means nobody knows, or nobody who knows can be bothered to answer your question. Posting the same question a

Re: [sqlite] How to access values of a columns with specific row id.

2012-01-31 Thread David Bicking
On 01/31/2012 04:05 AM, bhaskarReddy wrote: Hi Friends, Can any one tell me how to access values of a table column with its particular row id. I tried with "select * from ontTable where rowid=2;" I am getting the output as

[sqlite] SQLite port to Stellaris ARM processor

2012-01-31 Thread David Henry
This mail describes how I implemented SQLite3 on a resource limited processor. The attached zip file contains sources and the IAR project files. Any missing sources e.g. fatfs are part of the IAR IDE and are freely available. Enjoy. Development Environment === 1)

Re: [sqlite] SQLite port to Stellaris ARM processor

2012-01-31 Thread Richard Hipp
On Mon, Jan 30, 2012 at 9:20 AM, David Henry wrote: > This mail describes how I implemented SQLite3 on a resource limited > processor. The attached zip file contains sources and the IAR project > files. > Attachments are stripped from the mailing list. Please send me the ZIP

Re: [sqlite] How to find number of columns and types in a table.

2012-01-31 Thread Kees Nuyt
On Tue, 31 Jan 2012 10:34:20 +, Bart Smissaert wrote: >http://www.sqlite.org/faq.html#q7 > >RBS And this: PRAGMA table_info(sometablename); -- returns metadata in a result set A few coding samples:

Re: [sqlite] How to find number of columns and types in a table.

2012-01-31 Thread Igor Tandetnik
bhaskarReddy wrote: >Is there any way to find the number of columns and column > types in a table. pragma table_info -- Igor Tandetnik ___ sqlite-users mailing list sqlite-users@sqlite.org

[sqlite] Delegates with linq

2012-01-31 Thread Truls Haaland
Given a table (SqLite) with an Id that is defined as a UNIQUEIDENTIFIER (stored as TEXT) I get the following results (firstId is a Guid matching the first entry): This fails (returns zero rows):   connection.SqLite.FirstOrDefault(s => s.Id == firstId ) This works (returns one row):  

Re: [sqlite] Delegates with linq

2012-01-31 Thread Joe Mistachkin
Truls Haaland wrote: > > Does this have something with the first being C# 2 and the second C# 3? > Without a more complete example, it's hard to say exactly. However, I suspect it may have something to do with the type(s) of "Id" and "firstId". Also, since the underlying storage is of the

[sqlite] PRAGMA journal_mode=WAL;

2012-01-31 Thread Bill McCormick
Where exactly to I put the PRAGMA journal_mode=WAL; line? Either I have some incorrect version or don't understand how to use this: #include int main(int argc, char** argv) { sqlite3 *db; PRAGMA journal_mode=WAL; ... gcc -g -Wall -lrt -I.. -I../../include -I../ini-parse -o prodd

Re: [sqlite] PRAGMA journal_mode=WAL;

2012-01-31 Thread Simon Slavin
On 31 Jan 2012, at 2:32pm, Bill McCormick wrote: > Where exactly to I put the PRAGMA journal_mode=WAL; line? You execute it as a SQL command, the same way you'd execute an INSERT command. You only need to do it once for the database file. The setting is stored with the database and next time

Re: [sqlite] PRAGMA journal_mode=WAL;

2012-01-31 Thread Igor Tandetnik
Bill McCormick wrote: > Where exactly to I put the PRAGMA journal_mode=WAL; line? It's a statement. You execute it, just like you would, say, INSERT or UPDATE. -- Igor Tandetnik ___ sqlite-users mailing list

Re: [sqlite] PRAGMA journal_mode=WAL;

2012-01-31 Thread Bill McCormick
Simon Slavin wrote, On 1/31/2012 8:34 AM: On 31 Jan 2012, at 2:32pm, Bill McCormick wrote: Where exactly to I put the PRAGMA journal_mode=WAL; line? You execute it as a SQL command, the same way you'd execute an INSERT command. You only need to do it once for the database file. The setting

Re: [sqlite] PRAGMA journal_mode=WAL;

2012-01-31 Thread Larry Brasfield
< Either I have some incorrect version or don't understand how to use this: < < #include < < int main(int argc, char** argv) < { < sqlite3 *db; < < PRAGMA journal_mode=WAL; < < ... < < gcc [various errors] The PRAGMA is something you pass to the statement preparation API as if it

Re: [sqlite] sqlite3 question

2012-01-31 Thread Pete
Thanks Larry. I had always been under the impression that forward slashes weren't acceptable in Windows path names so I'm glad to hear they are. The project I'm working on has to run on Macs as well as Windows and the forward slash is acceptable on both platforms. Pete On Tue, Jan 31, 2012 at

Re: [sqlite] PRAGMA journal_mode=WAL;

2012-01-31 Thread Bill McCormick
Larry Brasfield wrote, On 1/31/2012 8:40 AM: < Either I have some incorrect version or don't understand how to use this: < < #include < < int main(int argc, char** argv) < { < sqlite3 *db; < < PRAGMA journal_mode=WAL; < < ... < < gcc [various errors] The PRAGMA is something you

[sqlite] A simple calculation, complex SQL Statement

2012-01-31 Thread Fredrick Ughimi
Hello, I have this scenario. Its an inventory Software I am updating. Finding better ways to do things. I have a main table (tblMainInventory), Sales table (tblSales) and a Receives table (tblReceives).  The tblMainInventory is the base table while tblSales and tblReceives interacts with

Re: [sqlite] A simple calculation, complex SQL Statement

2012-01-31 Thread Petite Abeille
On Jan 31, 2012, at 6:20 PM, Fredrick Ughimi wrote: > Now, I want to be able to use the SQL statement to do the above calculation > for all the products available (Not just ProductNo1 alone) in one SQL > Statement. Is it possible? Sure. Join your various tables and group the result set by

Re: [sqlite] PRAGMA journal_mode=WAL;

2012-01-31 Thread Larry Brasfield
Bill McCormick wrote: > < PRAGMA journal_mode=WAL; ... So when I run an update command (to update some arbitrary record) from the sqlite3 command line, do I need to do something to do a checkpoint? By "checkpoint", I presume you mean some previous state of the database to which you

Re: [sqlite] A simple calculation, complex SQL Statement

2012-01-31 Thread Black, Michael (IS)
CREATE TABLE tblMainInventory(id,q); INSERT INTO "tblMainInventory" VALUES(1,40); INSERT INTO "tblMainInventory" VALUES(2,50); CREATE TABLE tblSales(id,q); INSERT INTO "tblSales" VALUES(1,30); INSERT INTO "tblSales" VALUES(2,20); CREATE TABLE tblReceives(id,q); INSERT INTO "tblReceives"

Re: [sqlite] PRAGMA journal_mode=WAL;

2012-01-31 Thread Bill McCormick
Larry Brasfield wrote, On 1/31/2012 11:36 AM: Bill McCormick wrote: > < PRAGMA journal_mode=WAL; ... So when I run an update command (to update some arbitrary record) from the sqlite3 command line, do I need to do something to do a checkpoint? By "checkpoint", I presume you mean some

Re: [sqlite] PRAGMA journal_mode=WAL;

2012-01-31 Thread Simon Slavin
On 31 Jan 2012, at 5:16pm, Bill McCormick wrote: > So when I run an update command (to update some arbitrary record) from the > sqlite3 command line, do I need to do something to do a checkpoint? Iff you fail to open a transaction before you do a SQL command, SQLite will automatically wrap it

Re: [sqlite] PRAGMA journal_mode=WAL;

2012-01-31 Thread Petite Abeille
On Jan 31, 2012, at 6:45 PM, Bill McCormick wrote: > Funny how SQL works; it really can't figure out what you REALLY want to do > :) Maybe somebody who is really smart could figure out how to add a feature > to do this? :) Try: pragma dwim = yes;

Re: [sqlite] Is there any API for counting number of rows in a particular table.

2012-01-31 Thread John Elrick
On Tue, Jan 31, 2012 at 6:01 AM, Fabio Spadaro wrote: > Hi > > 2012/1/30 Bart Smissaert > > > How do you make it open database files that have an extension other than > > .slt? > > > > RBS > > > Tonight I will see to create a new version with

[sqlite] SQLite on Visual Studio 2010

2012-01-31 Thread Agrawal, Manish
Hello I am a newbie to both Visual Studio and SQLite, but have a few years of Java/ Netbeans/ Glassfish/ MySQL experience. I am trying to get started with using SQLite on Visual Studio 2010 (VS10) but am unable to get a SQLite Data Source type in my project. I created a WPF

Re: [sqlite] SQLite on Visual Studio 2010

2012-01-31 Thread Joe Mistachkin
Agrawal, Manish wrote: > > At this point I should get a SQLite DatSource type in VS10, but I do not. > I was wondering if someone would know what I am missing. > It sounds like you want the Visual Studio Designer support; however, the steps you mention are for simply setting up

[sqlite] SQLite not processing triggers on ALTER TABLE RENAME when table name case mismatches

2012-01-31 Thread Peter Aronson
This had me scratching my head for a while.  Normally, when you rename a table with triggers on it using ALTER TABLE old_name RENAME TO new_name, it will fix the table association in sqlite_master to indicate the relationship with the new table. However, it turns out, if the table name is

Re: [sqlite] SQLite on Visual Studio 2010

2012-01-31 Thread Agrawal, Manish
Thanks very much. I tested the first application at the site and it worked! How can I get the designer support though? I added a reference to SQLite.Designer.dll but that was not enough. I am a relative newbie to database design and the designer would greatly improve productivity. Thanks

[sqlite] Delete data base.

2012-01-31 Thread bhaskarReddy
Hi Friends, is it possible to delete a database with DROP command. ex: DROP DATABASE dbName; Regards, Baskar Reddy. -- View this message in context: http://old.nabble.com/Delete-data-base.-tp33241353p33241353.html Sent from the SQLite mailing list archive at

Re: [sqlite] Delete data base.

2012-01-31 Thread Taleeb Anwar
No! Try deleting the database file instead (right click - delete) Thanks & Regards Taleeb bin Waquar *Hum Mashriq Ke "Miskeenon" Ka Dil Maghrib men Ja Atka Hai!!* On Wed, Feb 1, 2012 at 11:41 AM, bhaskarReddy wrote: > > Hi Friends, > > is it possible to

Re: [sqlite] SQLite on Visual Studio 2010

2012-01-31 Thread Taleeb Anwar
Hi Manish, Try the following (it may work) 1. In Data Source Select "" 2. In Data Provider Select "..Provider for Ole Db" 3. Click Continue 4. In Ole Db Provider Select "SqlLite" If this does not work (that is if there is no option for sqlLite in step 4) then you will have to go for some third

Re: [sqlite] SQLite on Visual Studio 2010

2012-01-31 Thread Alok Singh
Don't know which connection provider you are going to use, but ADO.net guideline is here: 1. Download Sqlite for windows, install it. 2. Download ADO.NET 2.0 Provider for SQLite from here and install it : http://sourceforge.net/projects/sqlite-dotnet2/ 3. Added a reference to the

Re: [sqlite] PRAGMA journal_mode=WAL;

2012-01-31 Thread Guy Terreault
Hi, Simon. I have been reading your back and forth answers like the next 4 responce. And I am still waiting for the example that works in c code like the one that Bill McCormick that is wrong. Why do you not include in your answer a working correction of the c code so that followers can