<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Kommentare zu: SQLite mit VB 6.0</title>
	<atom:link href="http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/</link>
	<description>Not just another weblog</description>
	<lastBuildDate>Sat, 04 Feb 2012 18:40:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>Von: Tom</title>
		<link>http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/comment-page-1/#comment-77766</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 27 Sep 2010 22:20:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/#comment-77766</guid>
		<description>&lt;b&gt;Hello Thousand Thanks for your work !!
Im loving it !!&lt;/b&gt;

But there is a little bug, when you select 
2 columns with same name from different tables:
for example:

select table1.id, table2.id from table1 left join table2 on [blah blah]

there is a problem because id and id.
But very this little workaround is ok:

select table1.id, table2.id as something from table1 left join table2 on [blah blah]

Thx:
&lt;a href=&#039;http://www.lookover.at&#039; rel=&quot;nofollow&quot;&gt;Lookover.at&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><b>Hello Thousand Thanks for your work !!<br />
Im loving it !!</b></p>
<p>But there is a little bug, when you select<br />
2 columns with same name from different tables:<br />
for example:</p>
<p>select table1.id, table2.id from table1 left join table2 on [blah blah]</p>
<p>there is a problem because id and id.<br />
But very this little workaround is ok:</p>
<p>select table1.id, table2.id as something from table1 left join table2 on [blah blah]</p>
<p>Thx:<br />
<a href='http://www.lookover.at' rel="nofollow">Lookover.at</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Michael Wandel</title>
		<link>http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/comment-page-1/#comment-34276</link>
		<dc:creator>Michael Wandel</dc:creator>
		<pubDate>Thu, 12 Jul 2007 12:46:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/#comment-34276</guid>
		<description>Hi,

ich benutze die Klasse und alles funktioniert soweit ganz gut, nun würde ich meine DB gerne mit einem Passwort verschlüsseln, wie übergebe ich diese beim Öffnen der DB ?

Gruß, Michael</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>ich benutze die Klasse und alles funktioniert soweit ganz gut, nun würde ich meine DB gerne mit einem Passwort verschlüsseln, wie übergebe ich diese beim Öffnen der DB ?</p>
<p>Gruß, Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: admin</title>
		<link>http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/comment-page-1/#comment-28732</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 27 May 2007 10:45:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/#comment-28732</guid>
		<description>&lt;p&gt;@interesting:&lt;br /&gt;
Just check before opening the db if the file exists...&lt;br /&gt;
I don&#039;t know why “SELECT * FROM table” doesn&#039;t work...&lt;br /&gt;
Yes, the &lt;a href=&quot;http://www.microsoft.com/downloads/details.aspx?familyid=32bc1bee-a3f9-4c13-9c99-220b62a191ee&amp;displaylang=en&quot; rel=&quot;nofollow&quot;&gt;Microsoft Visual C++ 2005 Redistributable Package&lt;/a&gt; has to be installed&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@interesting:<br />
Just check before opening the db if the file exists&#8230;<br />
I don&#8217;t know why “SELECT * FROM table” doesn&#8217;t work&#8230;<br />
Yes, the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=32bc1bee-a3f9-4c13-9c99-220b62a191ee&#038;displaylang=en" rel="nofollow">Microsoft Visual C++ 2005 Redistributable Package</a> has to be installed</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: interesting</title>
		<link>http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/comment-page-1/#comment-28334</link>
		<dc:creator>interesting</dc:creator>
		<pubDate>Sun, 20 May 2007 16:05:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/#comment-28334</guid>
		<description>Very nice work. However, I have 2 problems:
One minor one: When giving an invalid filename, openfile always returns true.
One major one: I get a crash when executing a &quot;SELECT * FROM table&quot; on a valid sqlite ver 3 file (on some others it&#039;s ok).
&quot;AppName: vb6.exe ModName: vb-sqlite.dll Offset: 00311a0&quot;

Other thing I noticed: the dll has a dependency to msvcrt80.dll which is not existing on my system.</description>
		<content:encoded><![CDATA[<p>Very nice work. However, I have 2 problems:<br />
One minor one: When giving an invalid filename, openfile always returns true.<br />
One major one: I get a crash when executing a &#8220;SELECT * FROM table&#8221; on a valid sqlite ver 3 file (on some others it&#8217;s ok).<br />
&#8220;AppName: vb6.exe ModName: vb-sqlite.dll Offset: 00311a0&#8243;</p>
<p>Other thing I noticed: the dll has a dependency to msvcrt80.dll which is not existing on my system.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: admin</title>
		<link>http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/comment-page-1/#comment-26527</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Fri, 04 May 2007 06:41:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/#comment-26527</guid>
		<description>Here is a sample on how to access a SQLite-Database:

&lt;pre&gt;
Dim cSqlite As New cSqlite
Dim cRows As Collection
Dim i As Long

    cSqlite.File = &quot;[Path-to-db]&quot;
    cSqlite.openFile

    If cSqlite.execute(&quot;[SQL statement]&quot;) Then
        Set cRows = cSqlite.Rows
        Debug.Print cSqlite.ColumnsString

        For i = 1 To cRows.Count
            Debug.Print cSqlite.RowString(i)
        Next
    End If

    cSqlite.closeFile
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Here is a sample on how to access a SQLite-Database:</p>
<pre>
Dim cSqlite As New cSqlite
Dim cRows As Collection
Dim i As Long

    cSqlite.File = "[Path-to-db]"
    cSqlite.openFile

    If cSqlite.execute("[SQL statement]") Then
        Set cRows = cSqlite.Rows
        Debug.Print cSqlite.ColumnsString

        For i = 1 To cRows.Count
            Debug.Print cSqlite.RowString(i)
        Next
    End If

    cSqlite.closeFile
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Jürgen</title>
		<link>http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/comment-page-1/#comment-26484</link>
		<dc:creator>Jürgen</dc:creator>
		<pubDate>Thu, 03 May 2007 16:37:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/#comment-26484</guid>
		<description>Have you got a sample code for accessing a DB File.
It didn&#039;t work here ... :(</description>
		<content:encoded><![CDATA[<p>Have you got a sample code for accessing a DB File.<br />
It didn&#8217;t work here &#8230; <img src='http://www.crea-doo.at/weblog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: admin</title>
		<link>http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/comment-page-1/#comment-5753</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 29 Nov 2006 10:25:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/#comment-5753</guid>
		<description>Now I&#039;ve updated the downloads with a working copy of the dll and the wrapper class. The Version is still 3.3.6!</description>
		<content:encoded><![CDATA[<p>Now I&#8217;ve updated the downloads with a working copy of the dll and the wrapper class. The Version is still 3.3.6!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: admin</title>
		<link>http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/comment-page-1/#comment-4922</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 21 Nov 2006 19:23:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/#comment-4922</guid>
		<description>I&#039;m working on that ;-)
I&#039;ll upload the new version soon...</description>
		<content:encoded><![CDATA[<p>I&#8217;m working on that <img src='http://www.crea-doo.at/weblog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
I&#8217;ll upload the new version soon&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: mj mendoza</title>
		<link>http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/comment-page-1/#comment-4771</link>
		<dc:creator>mj mendoza</dc:creator>
		<pubDate>Mon, 20 Nov 2006 11:37:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.crea-doo.at/weblog/2006/08/01/sqlite-mit-vb-60/#comment-4771</guid>
		<description>the dll doesnt not work. please upload a working one. thanks...</description>
		<content:encoded><![CDATA[<p>the dll doesnt not work. please upload a working one. thanks&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

