[sqlite] Trying to free not allocated memory while Insert

2008-07-05 Thread Mahalakshmi.m
Hi , I am working in Sqlite 3.3.6 source files. I tried to insert one record and I found that sqlite3GenericFree (p) is called. But that address is not allocated using sqlite3GenericMalloc (int n). Is this Correct.Kindly clarify. Will all memory gets allocated and freed inside os_common.h or at

[sqlite] Is this Sorting order right?

2008-05-15 Thread Mahalakshmi.m
typedef struct {   unsigned short s8_ArtistName[256];   }STRUCT_SQLITE_MY_RECORD;  UINT32   u32_Return;  const UINT16 *u16_SearchResult;  STRUCT_SQLITE_MY_RECORD st_SQLITE_DB_Record; sqlite3* db;  sqlite3_stmt*

[sqlite] Is this Sorting order right?

2008-05-14 Thread Mahalakshmi.m
Igor Tandetnik wrote: >I'm not sure I understand. What exactly are you doing differently in these >two cases? Can you quote the exact code that fails, in full? #include #include int main()  {   sqlite3* db;   sqlite3_stmt* insert;  unsigned short ArtistName;   sqlite3_open(" mysqlite.db ",

[sqlite] Is this Sorting order right?

2008-05-12 Thread Mahalakshmi.m
Igor Tandetnik wrote >> I can't reproduce this particular problem. Here's the test I wrote: >> Figure out what you are doing differently. I too did the same using both UTF8 anf UTF16 .Its coming right for UTF8 but its wrong for UTF16. For both encoding I used the below procedure,

[sqlite] Is this Sorting order right?

2008-05-12 Thread Mahalakshmi.m
Mahalakshmi wrote > What about Japanese Kanji? > Will sqlite sort all the Hiragana,Katakana,Kanji. Igor Tandetnik wrote >> Not out of the box. You will have to implement a custom collation. Or, >> you can build SQLite with ICU support, then it >> will use ICU collation >> functions. Thanks a

[sqlite] Is this Sorting order right?

2008-05-10 Thread Mahalakshmi.m
What about Japanese Kanji? Will sqlite sort all the Hiragana,Katakana,Kanji. I am having some records with starting Unicode as follows. 6B4C Kanji 歌手生活25周却記念 北島三石1 30A2 Katakana アンテナ I am storing it using sqlite3_bind_text16(). But if I sort the above two the Unicode with

[sqlite] Select by order Speed

2008-04-25 Thread Mahalakshmi.m
My table has records as follows: Id Track 1 zz 2 aaa 3 cc 4 aaa 5 aaa 6 aaa 1st 2 records -> SELECT Id, Track FROM MUSIC ORDER BY Track LIMIT 2; Output: 2 aaa 4 aaa Next 2->SELECT Id, Track FROM MUSIC WHERE Track > aaa ORDER

[sqlite] speed for select statements

2008-04-17 Thread Mahalakshmi.m
MY Table is: "CREATE TABLE ARTIST(ArtistId INTEGER PRIMARY KEY,ArtistName TEXT NOT NULL COLLATE NOCASE, ArtistTrackCount INTEGER, UNIQUE(ArtistName));" "CREATE TABLE ALBUM(AlbumId INTEGER PRIMARY KEY,AlbumName TEXT NOT NULL COLLATE NOCASE,AlbumTrackCount INTEGER,UNIQUE(AlbumName));"

[sqlite] Update

2008-04-09 Thread Mahalakshmi.m
Hi, "CREATE TABLE ALBUM(AlbumId INTEGER PRIMARY KEY NOT NULL,AlbumName TEXT NOT NULL COLLATE NOCASE ,AlbumTrackCount INTEGER,UNIQUE(AlbumName));" AlbumId AlbumName AlbumTrackCount 1 aaa 3 2 ddd 2 3 ccc 1

[sqlite] Update Trigger

2008-04-05 Thread Mahalakshmi.m
Dennis Wrote: >If you want to update the AlbumName field, you must do that with an >update statement running on the Album table, not the Music table, since >that is where the AlbumName field is stored. You haven't said what you >want to update the AlbumName or ArtistName to. You probably have

[sqlite] Update Trigger

2008-04-04 Thread Mahalakshmi.m
Hi, I am having 4 records in my database. I am using Joins method. My Table Looks like: "CREATE TABLE ARTIST (ArtistId INTEGER PRIMARY KEY NOT NULL,ArtistName TEXT NOT NULL COLLATE NOCASE ,YomiArtistName TEXT NOT NULL,UNIQUE(ArtistName));" ArtistIdArtistName

[sqlite] Count(1)

2008-04-03 Thread Mahalakshmi.m
Hi, I am having 4 records in my Harddisk. My Processor speed is 400 Mhz. For "SELECT COUNT(1) FROM MUSIC ;" its getting more time to display the count. I have also tried with "SELECT COUNT(*) FROM MUSIC ;This also take more time. Is there any other way we can get the Total number of records.

[sqlite] Indexing and Search speed

2008-03-29 Thread Mahalakshmi.m
Hi, I am having 4 records in my database. I am using Joins method. My Table Looks like: "PRAGMA encoding = UTF16;" "CREATE TABLE ALBUMARTIST (AlbumArtistId INTEGER PRIMARY KEY NOT NULL, AlbumArtistName TEXT NOT NULL COLLATE NOCASE, YomiAlbumArtistName TEXT NOT NULL, UNIQUE

[sqlite] sqlite3_mprintf and Prepare

2008-03-26 Thread Mahalakshmi.m
Igor Tandetnik Wrote: >The first case is slower, since it has to make an extra sqlite3_mprintf >call (that achieves precisely nothing). Thanks a lot Igor.Its am clear now. ___ sqlite-users mailing list sqlite-users@sqlite.org

[sqlite] sqlite3_mprintf and Prepare

2008-03-26 Thread Mahalakshmi.m
Hi, I want to know why we have to use sqlite3_mprintf before sqlite3_prepare() Case 1: Query = sqlite3_mprintf ("DELETE FROM MUSIC WHERE URL = ?;"); sqlite3_prepare(db, Query ,-1,,0); sqlite3_free(Query); case 2: We can also use directly - sqlite3_prepare(db, "DELETE FROM MUSIC WHERE URL =

[sqlite] Rowid After Sorting

2008-03-26 Thread Mahalakshmi.m
e I will drop the tbl and insert once again like: create temp table t as select Id, Name from t order by Name; I think no other way than this will work out. Mahalakshmi.m wrote: > So, to find the index of a name, which is in sorted order, I need the >Rowid to be changed as shown in case 2 rather t

Re: [sqlite] Rowid After Sorting

2008-03-25 Thread Mahalakshmi.m
e I will drop the tbl and insert once again like: create temp table t as select Id, Name from t order by Name; I think no other way than this will work out. Mahalakshmi.m wrote: > So, to find the index of a name, which is in sorted order, I need the >Rowid to be changed as shown in case 2 rat

[sqlite] Rowid After Sorting

2008-03-24 Thread Mahalakshmi.m
1) SELECT rowid,Id,Name FROM MyTable ORDER BY Name; Rowid Id Name 4 4 aaa 3 3 bbb 2 2 xxx 1 1 zzz 2) "create table Temp as select Name from Mytable order by Name;" RowidId Name 1 4

[sqlite] Performance of bulk insertion

2008-03-24 Thread Mahalakshmi.m
I need to insert 4 records. Is there anyother way to insert huge number of data in to another table.. I want to insert each record after getting the Track from MUSIC select statement.Can we use Triggers for solving this. Can anyone help to solve this . Thanks & Regards, Ma

[sqlite] Rowid After Sorting

2008-03-14 Thread Mahalakshmi.m
me without creating table because in My table I am having many fields and each time I will create and drop the table for each fields. Can anyone please help to solve this. Thanks & Regards, Mahalakshmi.M ___ sqlite-users mailing lis

[sqlite] Prepare Statement

2008-03-01 Thread Mahalakshmi.m
n Thu, Feb 28, 2008 at 9:22 AM, Mahalakshmi.m <[EMAIL PROTECTED]> wrote: > > > Hi, > My table looks like: > IdName > 1 1aaa > 2 01345 > 3 1asdf > > I want to bind unsigned short a

[sqlite] Prepare Statement

2008-02-28 Thread Mahalakshmi.m
u16_Input,-1,SQLITE_STATIC); } For the above the return status of sqlite3_prepare is success but not properly binded. Please help me to solve this. Thanks & Regards, Mahalakshmi.M ___ sqlite-users mailing list sqlite-users@sqlite.org

[sqlite] Like operator

2008-02-27 Thread Mahalakshmi.m
next to the provided ie, rowed ->3 and Album -> . Can any one please help to solve my problem. Thanks & Regards, Mahalakshmi.M ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

[sqlite] Sorting Japanese records

2008-02-12 Thread Mahalakshmi.m
} } Will the above function insert the track name in UTF16 format inside Database or I am wrong some where ? I want the Tracks to be in Sorted order [ All track are inserted as UTF16 - Japanese letters ] Can I use UTF8 itself for doing this. Can Anyone hel

Re: [sqlite] sqlite-users Digest, Vol 2, Issue 24

2008-02-10 Thread Mahalakshmi.m
I am interested to join in this [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Sunday, February 10, 2008 10:30 PM To: sqlite-users@sqlite.org Subject: sqlite-users Digest, Vol 2, Issue 24 Send sqlite-users

[sqlite] FW: sqlite-users Digest, Vol 2, Issue 24

2008-02-10 Thread Mahalakshmi.m
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Sunday, February 10, 2008 10:30 PM To: sqlite-users@sqlite.org Subject: sqlite-users Digest, Vol 2, Issue 24 Send sqlite-users mailing list submissions to

[sqlite] Trace

2008-02-10 Thread Mahalakshmi.m
Hi , I am working in 3.3.6. If I want to use the "TRACE" what steps I have to follow. Thanks & Regards, Mahalakshmi ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] sqlite-users Digest, Vol 2, Issue 16

2008-02-07 Thread Mahalakshmi.m
Hi, I am interested in joining the sqlite-users mailing list. Kindly add my name. Thanks & Regards, Mahalakshmi -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, February 08, 2008 8:22 AM To: sqlite-users@sqlite.org Subject: