<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									SQLite - Get all field names of a table - Databases				            </title>
            <link>https://www.tweaking4all.com/forum/databases/sqlite-get-all-field-names-of-a-table/</link>
            <description>Tweaking4All.com Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sat, 09 May 2026 21:10:02 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: SQLite - Get all field names of a table</title>
                        <link>https://www.tweaking4all.com/forum/databases/sqlite-get-all-field-names-of-a-table/#post-5405</link>
                        <pubDate>Wed, 13 Mar 2024 12:26:39 +0000</pubDate>
                        <description><![CDATA[Or if you like to see all names in a single string:
select group_concat(name,&#039;,&#039;) as names from pragma_table_info(&#039;tablename&#039;);]]></description>
                        <content:encoded><![CDATA[<p>Or if you like to see all names in a single string:</p>
<pre contenteditable="false">select group_concat(name,',') as names from pragma_table_info('tablename');</pre>
<p> </p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/databases/">Databases</category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/databases/sqlite-get-all-field-names-of-a-table/#post-5405</guid>
                    </item>
				                    <item>
                        <title>RE: SQLite - Get all field names of a table</title>
                        <link>https://www.tweaking4all.com/forum/databases/sqlite-get-all-field-names-of-a-table/#post-5404</link>
                        <pubDate>Wed, 13 Mar 2024 12:24:31 +0000</pubDate>
                        <description><![CDATA[Now that I&#039;m playing with this, I did find that you cannot query the rows, unless you do this:
select name from pragma_table_info(&#039;tabelname&#039;);
&#x1f60a;]]></description>
                        <content:encoded><![CDATA[<p>Now that I'm playing with this, I did find that you cannot query the rows, unless you do this:</p>
<pre contenteditable="false">select name from pragma_table_info('tabelname');</pre>
<p>&#x1f60a; </p>]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/databases/">Databases</category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/databases/sqlite-get-all-field-names-of-a-table/#post-5404</guid>
                    </item>
				                    <item>
                        <title>SQLite - Get all field names of a table</title>
                        <link>https://www.tweaking4all.com/forum/databases/sqlite-get-all-field-names-of-a-table/#post-5403</link>
                        <pubDate>Wed, 13 Mar 2024 11:28:32 +0000</pubDate>
                        <description><![CDATA[SQLite has some pretty neat features, like this one which retrieves a list of field names (incl. type, not null, default value, etc) or nothing (when the table does not exist):
PRAGMA table...]]></description>
                        <content:encoded><![CDATA[<p>SQLite has some pretty neat features, like this one which retrieves a list of field names (incl. type, not null, default value, etc) or nothing (when the table does not exist):</p>
<pre contenteditable="false">PRAGMA table_info('tablename');</pre>
<p> </p>
<p> </p>
<p>Example:</p>
534]]></content:encoded>
						                            <category domain="https://www.tweaking4all.com/forum/databases/">Databases</category>                        <dc:creator>Hans</dc:creator>
                        <guid isPermaLink="true">https://www.tweaking4all.com/forum/databases/sqlite-get-all-field-names-of-a-table/#post-5403</guid>
                    </item>
							        </channel>
        </rss>
		