<?xml version="1.0" encoding="utf-8"?>
<!--  RSS generated by Flaimo.com RSS Builder [2012-02-05 02:13:49]  --> <rss version="2.0" xmlns:im="http://purl.org/rss/1.0/item-images/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" >
<channel>
<docs>http://bugtracker.sqliteman.com/</docs>
<description>Sqliteman Bugtracker - ISSUES</description>
<link>http://bugtracker.sqliteman.com/</link>
<title>Sqliteman Bugtracker - ISSUES</title>
<image>
<title>Sqliteman Bugtracker - ISSUES</title>
<url>http://bugtracker.sqliteman.com/images/mantis_logo_button.gif</url>
<link>http://bugtracker.sqliteman.com/</link>
<description>Sqliteman Bugtracker - ISSUES</description>
</image>
<category>All Projects</category>
<ttl>10</ttl>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<sy:updateBase>2012-02-05T02:13:47+01:00</sy:updateBase>
<item>
<title>0000181: Search... in Export Data should default to the directory where a CSV was last saved</title>
<link>http://bugtracker.sqliteman.com/view.php?id=181</link>
<description>It would be nice if the &quot;Search...&quot; button in the Export Data dialog would remember the directory where Sqliteman last saved a CSV.&lt;br /&gt;
&lt;br /&gt;
Ideally, the &quot;last save directory&quot; would be associated with each SQLite database that has been recently opened and the &quot;last save directory&quot; for each recently-opened SQLite database would persist across instances of Sqliteman. That is, if I open up `/home/myaccount/data.db` in Sqliteman, run a query, and export the query results to `/home/myaccount/data.csv`, then closing &amp; re-opening Sqliteman on `/home/myaccount/data.db` would remember that the last save directory for `/home/myaccount/data.db` is `/home/myaccount`.&lt;br /&gt;
&lt;br /&gt;
Even if a decision is made not to persist this information, it would be useful if Sqliteman would remember the last save directory of the current instance; i.e., if I export the results of a different query, the &quot;Search...&quot; file chooser would default to the last directory where I exported data.</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=181</guid>
<author>dtrebbien &lt;dtrebbien@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=181#bugnotes</comments>
</item>
<item>
<title>0000178: Sqliteman displays three error dialogs when creating temporary tables or views</title>
<link>http://bugtracker.sqliteman.com/view.php?id=178</link>
<description>Steps to reproduce:&lt;br /&gt;
&lt;br /&gt;
 1. Open an SQLite database with Sqliteman.&lt;br /&gt;
 2. In the SQL Editor, type:  CREATE TEMPORARY TABLE tmp (a INTEGER);&lt;br /&gt;
 3. Select the entire `CREATE TEMPORARY TABLE` statement and click the &quot;Run SQL&quot; button.&lt;br /&gt;
&lt;br /&gt;
Sqliteman will show three error dialogs. The first says &quot;Error while the list of table: no such table: temp.sqlite_master Unable to execute statement.&quot; The second says &quot;Error while the list of view: no such table: temp.sqlite_master Unable to execute statement.&quot; The third says &quot;Error while the list of the system catalogue: no such table: temp.sqlite_master Unable to execute statement.&quot;&lt;br /&gt;
&lt;br /&gt;
Clicking &quot;OK&quot; on all three error dialogs, the GUI refreshes and displays a &quot;temp&quot; entry in the Object Browser. But, the number of tables and views in &quot;temp&quot; are both 0, even though the temporary table does exist.</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=178</guid>
<author>dtrebbien &lt;dtrebbien@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=178#bugnotes</comments>
</item>
<item>
<title>0000180: Fix typo &quot;Do you want do&quot;</title>
<link>http://bugtracker.sqliteman.com/view.php?id=180</link>
<description>When there are unsaved changes in the SQL Editor, upon clicking the Close Window button, a dialog appears with the prompt &quot;Document has been changed. Do you want do save its content?&quot;&lt;br /&gt;
&lt;br /&gt;
I suggest &quot;Document has been changed. Do you want to save the contents?&quot;</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=180</guid>
<author>dtrebbien &lt;dtrebbien@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=180#bugnotes</comments>
</item>
<item>
<title>0000179: Provide a way to cancel the window closing operation</title>
<link>http://bugtracker.sqliteman.com/view.php?id=179</link>
<description>If I accidentally click the &quot;Close Window&quot; button, there is no way to cancel closing the window on the dialog asking whether I want to save the contents of the SQL Editor.&lt;br /&gt;
&lt;br /&gt;
It would be nice if in addition to the &quot;Yes&quot; and &quot;No&quot; options there was a &quot;Cancel&quot; option.</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=179</guid>
<author>dtrebbien &lt;dtrebbien@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=179#bugnotes</comments>
</item>
<item>
<title>0000115: NULL,  CURRENT_TIME, CURRENT_DATE or CURRENT_TIMESTAMP as a default</title>
<link>http://bugtracker.sqliteman.com/view.php?id=115</link>
<description>i cannot create table with those default values! evenif i do it with sql editor &lt;br /&gt;
i cannot add row with it! sqlitemanager insert text 'CURRENT_...' or 'NULL' into grid cell! it has to leave it alone to database or parse it to right datetime or null!&lt;br /&gt;
&lt;br /&gt;
i have:&lt;br /&gt;
CREATE TABLE &quot;test&quot; (&lt;br /&gt;
    &quot;kol1&quot; TEXT DEFAULT CURRENT_TIMESTAMP,&lt;br /&gt;
 &quot;kol2&quot; TEXT,&lt;br /&gt;
 &quot;kol3&quot; TEXT   DEFAULT NULL&lt;br /&gt;
)&lt;br /&gt;
&lt;br /&gt;
when i use create tabel dialog i get!!!:&lt;br /&gt;
CREATE TABLE &quot;test&quot; (&lt;br /&gt;
    &quot;kol1&quot; TEXT DEFAULT (&quot;CURRENT_TIMESTAMP&quot;),&lt;br /&gt;
 &quot;kol2&quot; TEXT,&lt;br /&gt;
 &quot;kol3&quot; TEXT   DEFAULT (&quot;NULL&quot;)&lt;br /&gt;
)&lt;br /&gt;
&lt;br /&gt;
even if i do create table with sqleditor to right statement, in the grid is insert wrong default values!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
here is from sqlite.org from CREATE TABLE help:&lt;br /&gt;
&lt;a href=&quot;http://www.sqlite.org/lang_createtable.html&quot;&gt;http://www.sqlite.org/lang_createtable.html&lt;/a&gt; [&lt;a href=&quot;http://www.sqlite.org/lang_createtable.html&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;]&lt;br /&gt;
&lt;br /&gt;
The DEFAULT constraint specifies a default value to use when doing an INSERT. The value may be NULL, a string constant or a number. Starting with version 3.1.0, the default value may also be one of the special case-independant keywords CURRENT_TIME, CURRENT_DATE or CURRENT_TIMESTAMP. If the value is NULL, a string constant or number, it is literally inserted into the column whenever an INSERT statement that does not specify a value for the column is executed. If the value is CURRENT_TIME, CURRENT_DATE or CURRENT_TIMESTAMP, then the current UTC date and/or time is inserted into the columns. For CURRENT_TIME, the format is HH:MM:SS. For CURRENT_DATE, YYYY-MM-DD. The format for CURRENT_TIMESTAMP is &quot;YYYY-MM-DD HH:MM:SS&quot;.</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=115</guid>
<author>wiaz &lt;wiaz@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=115#bugnotes</comments>
</item>
<item>
<title>0000177: No FTS3 support</title>
<link>http://bugtracker.sqliteman.com/view.php?id=177</link>
<description>I am trying to open an existing DB and I get the following message:&lt;br /&gt;
Error while getting the fileds of ft: no such module: FTS3 Unable to execute statement.&lt;br /&gt;
&lt;br /&gt;
First of all there is a spelling mistake, it should be &quot;fields&quot; not &quot;fileds&quot;! lol&lt;br /&gt;
&lt;br /&gt;
Secondly, it has something to do with FTS3 so I am assuming this needs to be included?&lt;br /&gt;
&lt;br /&gt;
Thanks</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=177</guid>
<author>jsherk &lt;jsherk@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=177#bugnotes</comments>
</item>
<item>
<title>0000176: Misleading error message when opening database locked by other application</title>
<link>http://bugtracker.sqliteman.com/view.php?id=176</link>
<description>When Firefox (3.6.20) is opened, if I try to open its cookies.sqlite database with sqliteman, I get an error message saying &quot;Unable to open or create cookies.sqlite. It is probably not a database&quot;.&lt;br /&gt;
&lt;br /&gt;
After closing Firefox, sqliteman succeeds in opening the same database.&lt;br /&gt;
&lt;br /&gt;
Perhaps sqliteman could detect that the database is locked and report that as the cause.&lt;br /&gt;
&lt;br /&gt;
This is under GNU/Linux (Fedora 14).</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=176</guid>
<author>sarrazip &lt;sarrazip@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=176#bugnotes</comments>
</item>
<item>
<title>0000175: Too many records updated/deleted in Data Viewer</title>
<link>http://bugtracker.sqliteman.com/view.php?id=175</link>
<description>Sqliteman seems to be ignoring Sqlite's ROWID primary key when updating the database due to a field value being changed in the Full View tab of the Data Viewer. So if multiple rows have the same values for all other fields then all the rows are updated when one row is editted. Similarly &quot;Remove Row&quot; will delete all rows with similar values.&lt;br /&gt;
&lt;br /&gt;
Test database created with this script:-&lt;br /&gt;
&lt;br /&gt;
PRAGMA foreign_keys=OFF;&lt;br /&gt;
BEGIN TRANSACTION;&lt;br /&gt;
CREATE TABLE &quot;A&quot; (&lt;br /&gt;
    &quot;A1&quot; INTEGER NOT NULL,&lt;br /&gt;
    &quot;A2&quot; TEXT NOT NULL&lt;br /&gt;
);&lt;br /&gt;
INSERT INTO &quot;A&quot; VALUES(1,'One');&lt;br /&gt;
INSERT INTO &quot;A&quot; VALUES(2,'Two');&lt;br /&gt;
INSERT INTO &quot;A&quot; VALUES(1,'One');&lt;br /&gt;
INSERT INTO &quot;A&quot; VALUES(3,'Three');&lt;br /&gt;
COMMIT;&lt;br /&gt;
&lt;br /&gt;
Using Data Viewer to edit/delete either first or third row will change both rows instead of just the specified row.&lt;br /&gt;
&lt;br /&gt;
This behaviour can be bypassed by explicitly declaring the ROWID field and specifying Null for it in the insert statements. But the above definition is quite valid for an Sqlite database. The ROWID is also the safest and fastest way of specifying the record to be updated/deleted.&lt;br /&gt;
&lt;br /&gt;
Suggest retrieve ROWID from database when filling Data Viewer from table and displaying it in column or in numbered button at start of each row. Updates/deletes can then be simpler/faster as they only need WHERE ROWID=? to specify which row.&lt;br /&gt;
&lt;br /&gt;
Using Sqliteman Version 1.2.2 with Qt version 4.7.2 on Ubuntu 11.04 Linux with Sqlite from Ubuntu repository (libsqlite3-0 version 3.7.4-2ubuntu5).</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=175</guid>
<author>repos &lt;repos@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=175#bugnotes</comments>
</item>
<item>
<title>0000174: Need help with linker error on windows</title>
<link>http://bugtracker.sqliteman.com/view.php?id=174</link>
<description>I get the following linking errors while trying to compile sqliteman on windows 7 x64. Can you please help me figure out the problems here. I have attached the complete output from cmake mingw32-make with the case.&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
Linking CXX executable sqliteman.exe&lt;br /&gt;
Info: resolving QsciLexerSQL::staticMetaObject        by linking to __imp___ZN12&lt;br /&gt;
QsciLexerSQL16staticMetaObjectE (auto-import)&lt;br /&gt;
Info: resolving QsciScintilla::staticMetaObject        by linking to __imp___ZN1&lt;br /&gt;
3QsciScintilla16staticMetaObjectE (auto-import)&lt;br /&gt;
c:/qt/2010.05/mingw/bin/../lib/gcc/mingw32/4.4.0/../../../../mingw32/bin/ld.exe:&lt;br /&gt;
 warning: auto-importing has been activated without --enable-auto-import specifi&lt;br /&gt;
ed on the command line.&lt;br /&gt;
This should work unless it involves constant data structures referencing symbols&lt;br /&gt;
 from auto-imported DLLs.&lt;br /&gt;
CMakeFiles\sqliteman.dir/objects.a(litemanwindow.cpp.obj):litemanwindow.cpp:(.te&lt;br /&gt;
xt+0x754c): undefined reference to `_imp___ZN13QSQLiteDriverC1EP7QObject'&lt;br /&gt;
CMakeFiles\sqliteman.dir/objects.a(qsql_sqlite.cpp.obj):qsql_sqlite.cpp:(.text+0&lt;br /&gt;
xf3): undefined reference to `_imp___ZTV13QSQLiteDriver'&lt;br /&gt;
CMakeFiles\sqliteman.dir/objects.a(qsql_sqlite.cpp.obj):qsql_sqlite.cpp:(.text+0&lt;br /&gt;
x12b): undefined reference to `_imp___ZTV13QSQLiteDriver'&lt;br /&gt;
CMakeFiles\sqliteman.dir/objects.a(qsql_sqlite.cpp.obj):qsql_sqlite.cpp:(.text+0&lt;br /&gt;
x15b): undefined reference to `_imp___ZTV13QSQLiteDriver'&lt;br /&gt;
CMakeFiles\sqliteman.dir/objects.a(qsql_sqlite.cpp.obj):qsql_sqlite.cpp:(.text+0&lt;br /&gt;
x19b): undefined reference to `_imp___ZTV13QSQLiteDriver'&lt;br /&gt;
CMakeFiles\sqliteman.dir/objects.a(qsql_sqlite.cpp.obj):qsql_sqlite.cpp:(.text+0&lt;br /&gt;
x1f3): undefined reference to `_imp___ZTV13QSQLiteDriver'&lt;br /&gt;
CMakeFiles\sqliteman.dir/objects.a(qsql_sqlite.cpp.obj):qsql_sqlite.cpp:(.text+0&lt;br /&gt;
x24b): more undefined references to `_imp___ZTV13QSQLiteDriver' follow&lt;br /&gt;
CMakeFiles\sqliteman.dir/objects.a(qsql_sqlite.cpp.obj):qsql_sqlite.cpp:(.text+0&lt;br /&gt;
x1bf4): undefined reference to `_imp___ZN13QSQLiteDriver16staticMetaObjectE'&lt;br /&gt;
CMakeFiles\sqliteman.dir/objects.a(qsql_sqlite.cpp.obj):qsql_sqlite.cpp:(.text+0&lt;br /&gt;
x1dfc): undefined reference to `_imp___ZN13QSQLiteDriver16staticMetaObjectE'&lt;br /&gt;
CMakeFiles\sqliteman.dir/objects.a(qsql_sqlite.cpp.obj):qsql_sqlite.cpp:(.text+0&lt;br /&gt;
x2004): undefined reference to `_imp___ZN13QSQLiteDriver16staticMetaObjectE'&lt;br /&gt;
CMakeFiles\sqliteman.dir/objects.a(qsql_sqlite.cpp.obj):qsql_sqlite.cpp:(.text+0&lt;br /&gt;
x2171): undefined reference to `_imp___ZN13QSQLiteDriver16staticMetaObjectE'&lt;br /&gt;
CMakeFiles\sqliteman.dir/objects.a(qsql_sqlite.cpp.obj):qsql_sqlite.cpp:(.text+0&lt;br /&gt;
x246c): undefined reference to `_imp___ZN13QSQLiteDriver16staticMetaObjectE'&lt;br /&gt;
CMakeFiles\sqliteman.dir/objects.a(moc_qsql_sqlite.cxx.obj):moc_qsql_sqlite.cxx:&lt;br /&gt;
(.text+0x15): more undefined references to `_imp___ZN13QSQLiteDriver16staticMeta&lt;br /&gt;
ObjectE' follow&lt;br /&gt;
collect2: ld returned 1 exit status&lt;br /&gt;
mingw32-make[2]: *** [sqliteman/sqliteman.exe] Error 1&lt;br /&gt;
mingw32-make[1]: *** [sqliteman/CMakeFiles/sqliteman.dir/all] Error 2&lt;br /&gt;
mingw32-make: *** [all] Error 2&lt;br /&gt;
&lt;br /&gt;
C:\Code\sqliteman\Sqliteman&gt;mingw32-make</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=174</guid>
<author>fmansoor &lt;fmansoor@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=174#bugnotes</comments>
</item>
<item>
<title>0000153: AUTOINCREMENT lost after ALTER table</title>
<link>http://bugtracker.sqliteman.com/view.php?id=153</link>
<description>I have a table with &quot; SRC_SK  INTEGER PRIMARY KEY AUTOINCREMENT, &quot; column as the primary key.&lt;br /&gt;
&lt;br /&gt;
When I use the GUI to alter table to add more columns the &quot;PRIMARY KEY AUTOINCREMENT&quot; clause is lost from the altered table.&lt;br /&gt;
&lt;br /&gt;
I can add it back in by altering the table again and adding the full clause in the &quot;type&quot; column.&lt;br /&gt;
&lt;br /&gt;
This can be a real pain to debug as my application expects autogenerated keys and cannot handle a &quot;null&quot; key.</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=153</guid>
<author>andjames &lt;andjames@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=153#bugnotes</comments>
</item>
<item>
<title>0000171: Suggest to have tabbed SQL editor</title>
<link>http://bugtracker.sqliteman.com/view.php?id=171</link>
<description>it would be nice to have tabs on the editor so I could work on multiple SQL scripts at a time without having to close one and reload another (e.g. tweaking DDL and DML at the same time)</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=171</guid>
<author>sarc &lt;sarc@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=171#bugnotes</comments>
</item>
<item>
<title>0000173: Text search function in reverse does not work</title>
<link>http://bugtracker.sqliteman.com/view.php?id=173</link>
<description>WHen searching for text FORWARD in the SQL editor it works perfectly, but when searching bacwards (using the green arrow pointing left) it does not work at all.</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=173</guid>
<author>sarc &lt;sarc@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=173#bugnotes</comments>
</item>
<item>
<title>0000172: SQL Editor drops some new lines in the script</title>
<link>http://bugtracker.sqliteman.com/view.php?id=172</link>
<description>Sometimes (every couple of days) I would save a script from SQL editor, then reopen and some of the lines have been merged into one as in this example:&lt;br /&gt;
&lt;br /&gt;
&quot;&lt;br /&gt;
DELETE FROM VALIDATIONREPORT WHERE headerid = new.odmheaderid AND declarationnumber = 'N/A' AND issuetype = 'Invalid data in ODM Export Record'&lt;br /&gt;
AND validationcheck = 'Load data into ' || new.odmname || ' Header';&lt;br /&gt;
END;DROP TRIGGER IF EXISTS ODMSHIPINSERT;&lt;br /&gt;
&quot;&lt;br /&gt;
This script will not run until I manually re-edit the file and add the missing new lines as in this example:&lt;br /&gt;
&lt;br /&gt;
&quot;&lt;br /&gt;
DELETE FROM VALIDATIONREPORT WHERE headerid = new.odmheaderid AND declarationnumber = 'N/A' AND issuetype = 'Invalid data in ODM Export Record'&lt;br /&gt;
AND validationcheck = 'Load data into ' || new.odmname || ' Header';&lt;br /&gt;
END;&lt;br /&gt;
DROP TRIGGER IF EXISTS ODMSHIPINSERT;&lt;br /&gt;
&quot;</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=172</guid>
<author>sarc &lt;sarc@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=172#bugnotes</comments>
</item>
<item>
<title>0000170: Issue sqlite shell commands from sqliteman SQL editor</title>
<link>http://bugtracker.sqliteman.com/view.php?id=170</link>
<description>Unless I'm doing something wrong I cannot issue shell commands from editor&quot;&lt;br /&gt;
&lt;br /&gt;
.separator &quot;	&quot;&lt;br /&gt;
.import RECORD.TXT FILELODER ;&lt;br /&gt;
&lt;br /&gt;
Query Error: near &quot;.&quot;: syntax error Unable to execute statement&lt;br /&gt;
&lt;br /&gt;
.separator &quot;	&quot;&lt;br /&gt;
.import RECORD.TXT FILELODER ;&lt;br /&gt;
&lt;br /&gt;
Maybe editor could have an escape character that would interpret the commands as shell commands not SQL?</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=170</guid>
<author>sarc &lt;sarc@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=170#bugnotes</comments>
</item>
<item>
<title>0000169: Truncate table from GUI fails</title>
<link>http://bugtracker.sqliteman.com/view.php?id=169</link>
<description>From GUI - Full View, &quot;Remove row&quot; works but &quot;Truncate Table&quot; seems not to do anything on my tables (regardless if &quot;Commit&quot; button is clicked.</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=169</guid>
<author>sarc &lt;sarc@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=169#bugnotes</comments>
</item>
<item>
<title>0000168: Homepage wind32 download link points to OS/2 version</title>
<link>http://bugtracker.sqliteman.com/view.php?id=168</link>
<description>On the page &lt;&lt;a href=&quot;http://sqliteman.com/page/4.html&gt;&quot;&gt;http://sqliteman.com/page/4.html&gt;&lt;/a&gt; [&lt;a href=&quot;http://sqliteman.com/page/4.html&gt;&quot; target=&quot;_blank&quot;&gt;^&lt;/a&gt;] the MS Windows - Download from Sqliteman area at sourceforge.net immediately downloads the OS/2 version. It does not show a listing</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=168</guid>
<author>ecsman &lt;ecsman@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=168#bugnotes</comments>
</item>
<item>
<title>0000109: edited rows indicator</title>
<link>http://bugtracker.sqliteman.com/view.php?id=109</link>
<description>you have nice red indicator of deleted rows, if you could add indicator of edited and new added it would be nice. because if i have many edited rows i dont remember rather to commit transaction or not, if i want to see data in another table.</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=109</guid>
<author>wiaz &lt;wiaz@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=109#bugnotes</comments>
</item>
<item>
<title>0000159: Blob preview resizes too slowly when main window changes its size.</title>
<link>http://bugtracker.sqliteman.com/view.php?id=159</link>
<description>When Blob preview is activated in the data viewer and resize the main window (horizontally or vertically) to a smaller size, the change of size of the image and the tab view become very slow. The Tab takes a minor size and the image a major size (different sizes that the final size of each object). Then the first one starts growing --slowly-- as other decreases.&lt;br /&gt;
&lt;br /&gt;
I know that this bug is a minor severity, but it is very annoying when you handle tables that contain blob data in them.</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=159</guid>
<author>mhbeyle &lt;mhbeyle@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=159#bugnotes</comments>
</item>
<item>
<title>0000023: updatable selects</title>
<link>http://bugtracker.sqliteman.com/view.php?id=23</link>
<description>see comments bellow&lt;br /&gt;
&lt;br /&gt;
When viewing the results of a table, buttons to insert rows, delete, etc. are always disabled, even when a select * query is running!</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=23</guid>
<author>mazaw &lt;mazaw@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=23#bugnotes</comments>
</item>
<item>
<title>0000107: context menu on cells</title>
<link>http://bugtracker.sqliteman.com/view.php?id=107</link>
<description>it should be easy:):) id like to have a context menu on cells:&lt;br /&gt;
1. insert NULL value,&lt;br /&gt;
2. open advanced editor&lt;br /&gt;
&lt;br /&gt;
i know when i double click i have buttons, but for me easier is use context menu. if you do this you'll like it for sure! :)</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=107</guid>
<author>wiaz &lt;wiaz@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=107#bugnotes</comments>
</item>
<item>
<title>0000154: provide command history</title>
<link>http://bugtracker.sqliteman.com/view.php?id=154</link>
<description>Thank you for the good sqliteman work.  I enjoy working with the program.&lt;br /&gt;
&lt;br /&gt;
It would be nice if sqliteman had a history of the commands given via the window on the upper right.</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=154</guid>
<author>Rolf &lt;Rolf@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=154#bugnotes</comments>
</item>
<item>
<title>0000167: Build 1.2 on Mac OS X</title>
<link>http://bugtracker.sqliteman.com/view.php?id=167</link>
<description>I'm trying to build the project on Mac OS X. I installed cmake but when I run it's complain about scintilla. I don't know how can install scintilla on Mac.&lt;br /&gt;
&lt;br /&gt;
I have also Qt Creator 2.0.80 (Snapshot-from-2.0-branch) installed on the Mac. Is that possible to have a Qt Creator project for Sqliteman I guess it will be easier to create a binary for each platform.</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=167</guid>
<author>zelegolas &lt;zelegolas@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=167#bugnotes</comments>
</item>
<item>
<title>0000134: DATA Type TEXT COLLATE IUNICODE used across 2 tables creates error</title>
<link>http://bugtracker.sqliteman.com/view.php?id=134</link>
<description>I can't remember the exact command at the moment but its when using values from 2 tables that have collate iunicode it complains that it dosen't recognise the collate iunicode.&lt;br /&gt;
&lt;br /&gt;
When I find a real example I will post additional information.</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=134</guid>
<author>MoDementia &lt;MoDementia@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=134#bugnotes</comments>
</item>
<item>
<title>0000166: panel arrangement becomes unusable</title>
<link>http://bugtracker.sqliteman.com/view.php?id=166</link>
<description>left hand site of panel just went missing, had to find and then delete config to get it working again.&lt;br /&gt;
&lt;br /&gt;
here is old config which makes GUI unusable;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[General]&lt;br /&gt;
lastDatabase=/home/simon/.config/chromium/Default/databases/file__0/11&lt;br /&gt;
checkQtVersion=true&lt;br /&gt;
&lt;br /&gt;
[window]&lt;br /&gt;
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x1\0\0\0\0\0\x3\0\0\0y\0\0\x6&lt;\0\0\x4|\0\0\0\x3\0\0\0y\0\0\x6&lt;\0\0\x4|\0\0\0\0\0\0)&lt;br /&gt;
size=@Size(1594 1028)&lt;br /&gt;
splitter=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x2\0\0\x1(\0\0\x1\xa5\x1\0\0\0\x6\x1\0\0\0\x1)&lt;br /&gt;
&lt;br /&gt;
[objectbrowser]&lt;br /&gt;
show=false&lt;br /&gt;
&lt;br /&gt;
[sqleditor]&lt;br /&gt;
show=false&lt;br /&gt;
splitter=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x2\0\0\x1\xaf\0\0\x2_\x1\0\0\0\x6\x1\0\0\0\x2)&lt;br /&gt;
filename=&lt;br /&gt;
&lt;br /&gt;
[dataviewer]&lt;br /&gt;
splitter=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x2\0\0\x1x\0\0\x2\x13\0\0\0\0\x6\x1\0\0\0\x2)&lt;br /&gt;
&lt;br /&gt;
[recentDocs]&lt;br /&gt;
files=/home/simon/.opera/pstorage/02/09/00000000, /home/simon/.opera/pstorage/02/11/00000000, /home/simon/.config/chromium/Default/databases/file__0/11, /home/simon/.config/chromium/Default/databases/http_html5demos.com_0/2, /home/simon/.config/chromium/Default/databases/http_html5demos.com_0/3, /home/simon/.config/chromium/Default/databases/Databases.db&lt;br /&gt;
&lt;br /&gt;
[prefs]&lt;br /&gt;
languageComboBox=0&lt;br /&gt;
styleComboBox=0&lt;br /&gt;
recentlyUsedSpinBox=5&lt;br /&gt;
openLastDB=true&lt;br /&gt;
openLastSqlFile=true&lt;br /&gt;
nullCheckBox=true&lt;br /&gt;
nullAliasEdit={null}&lt;br /&gt;
nullBgButton=@Variant(\0\0\0\x43\x1\xff\xff\xff\xff\xfe\xfe\xcd\xcd\0\0)&lt;br /&gt;
blobCheckBox=true&lt;br /&gt;
blobAliasEdit={blob}&lt;br /&gt;
blobBgButton=@Variant(\0\0\0\x43\x1\xff\xff\xff\xff\xfe\xfe\xcd\xcd\0\0)&lt;br /&gt;
cropColumnsCheckBox=false&lt;br /&gt;
sqleditor\font=@Variant(\0\0\0@\0\0\0\x16\0\x41\0n\0\x64\0\x61\0l\0\x65\0 \0M\0o\0n\0o@$\0\0\0\0\0\0\xff\xff\xff\xff\x5\x1\0\x32\x10)&lt;br /&gt;
sqleditor\fontSize=10&lt;br /&gt;
sqleditor\useActiveHighlightCheckBox=true&lt;br /&gt;
sqleditor\activeHighlightButton=@Variant(\0\0\0\x43\x1\xff\xff\xe1\xe1\xed\xed\xff\xff\0\0)&lt;br /&gt;
sqleditor\useTextWidthMarkCheckBox=true&lt;br /&gt;
sqleditor\textWidthMarkSpinBox=60&lt;br /&gt;
sqleditor\useCodeCompletion=false&lt;br /&gt;
sqleditor\completionLengthBox=3&lt;br /&gt;
sqleditor\useShortcuts=false&lt;br /&gt;
sqleditor\shortcuts=@Variant(\0\0\0\b\0\0\0\0)&lt;br /&gt;
qscintilla\syDefaultColor=@Variant(\0\0\0\x43\x1\xff\xff\x80\x80\x80\x80\x80\x80\0\0)&lt;br /&gt;
qscintilla\syKeywordColor=@Variant(\0\0\0\x43\x1\xff\xff\0\0\0\0\x7f\x7f\0\0)&lt;br /&gt;
qscintilla\syNumberColor=@Variant(\0\0\0\x43\x1\xff\xff\0\0\x7f\x7f\x7f\x7f\0\0)&lt;br /&gt;
qscintilla\syStringColor=@Variant(\0\0\0\x43\x1\xff\xff\x7f\x7f\0\0\x7f\x7f\0\0)&lt;br /&gt;
qscintilla\syCommentColor=@Variant(\0\0\0\x43\x1\xff\xff\0\0\x7f\x7f\0\0\0\0)&lt;br /&gt;
&lt;br /&gt;
[data]&lt;br /&gt;
dateTimeFormat=MM/dd/yyyy&lt;br /&gt;
&lt;br /&gt;
[dataExport]&lt;br /&gt;
format=0&lt;br /&gt;
destination=0&lt;br /&gt;
headers=true&lt;br /&gt;
encoding=UTF-8&lt;br /&gt;
eol=0</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=166</guid>
<author>simon &lt;simon@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=166#bugnotes</comments>
</item>
<item>
<title>0000161: Documentation not in place in Ubuntu .deb</title>
<link>http://bugtracker.sqliteman.com/view.php?id=161</link>
<description>The help contents entry in the Help menu refers to a directory that does not exist. I guess it's a typo.&lt;br /&gt;
&lt;br /&gt;
It tries to go to /usr/share/doc/sqlitemanen/index.html, while the actual file is in /usr/share/doc/sqliteman/en/index.html, so it looks like a / is missing.</description>
<guid>http://bugtracker.sqliteman.com/view.php?id=161</guid>
<author>jpjacobs &lt;jpjacobs@example.com&gt;</author>
<comments>http://bugtracker.sqliteman.com/view.php?id=161#bugnotes</comments>
</item>
</channel>
</rss>

