<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IntelliJ Ultimate | Nerdpress.org</title>
	<atom:link href="https://nerdpress.org/tag/intellij-ultimate/feed/" rel="self" type="application/rss+xml" />
	<link>https://nerdpress.org</link>
	<description>...dev, tech problems and solutions.</description>
	<lastBuildDate>Wed, 09 Aug 2023 09:51:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Sqlite Administration in IntelliJ IDE</title>
		<link>https://nerdpress.org/2021/05/17/sqlite-administration-in-intellij-ide/</link>
		
		<dc:creator><![CDATA[Ivo Bathke]]></dc:creator>
		<pubDate>Mon, 17 May 2021 05:51:21 +0000</pubDate>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Sqlite]]></category>
		<category><![CDATA[IntelliJ Ultimate]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=3050</guid>

					<description><![CDATA[<p>Sometime ago I tried to use Adminer in Docker to administrate a sqlite database, which was not as easy as expected.If you are a happy user of IntelliJ IDE like PHPStorm or IntelliJ Ultimate like me :) then i would nowadays recommend to use the built-in database tool of your IntelliJ IDE for Sqlite administration &#8230; </p>
<p class="link-more"><a href="https://nerdpress.org/2021/05/17/sqlite-administration-in-intellij-ide/" class="more-link">Continue reading<span class="screen-reader-text"> "Sqlite Administration in IntelliJ IDE"</span></a></p>
The post <a href="https://nerdpress.org/2021/05/17/sqlite-administration-in-intellij-ide/">Sqlite Administration in IntelliJ IDE</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p>Sometime ago I tried to use <a href="https://nerdpress.org/2019/10/23/adminer-for-sqlite-in-docker/" target="_blank" rel="noreferrer noopener">Adminer in Docker</a> to administrate a sqlite database, which was not as easy as expected.<br />If you are a happy user of IntelliJ IDE like PHPStorm or IntelliJ Ultimate like me :) then i would nowadays recommend to use the built-in database tool of your IntelliJ IDE for Sqlite administration instead.<br />Even in dockerized context.</p>



<span id="more-3050"></span>



<p>A Sqlite database is only one file, which you surely have access to.<br />So just add a Database configuration to your IDE and point it to the Sqlite file.<br />Click on the Database flyout on the left side then on the + (Plus) and add a Sqlite configuration.<br />(IntelliJ has good documentation on <a href="https://www.jetbrains.com/help/idea/connecting-to-a-database.html#connect-to-sqlite-database" target="_blank" rel="noreferrer noopener">Sqlite Database connection</a> as well of course)</p>



<figure class="wp-block-image size-large"><a href="https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Sqlite_Database.png"><img fetchpriority="high" decoding="async" width="1024" height="563" src="https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Sqlite_Database-1024x563.png" alt="" class="wp-image-3051" srcset="https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Sqlite_Database-1024x563.png 1024w, https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Sqlite_Database-300x165.png 300w, https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Sqlite_Database-768x422.png 768w, https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Sqlite_Database.png 1257w" sizes="(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px" /></a></figure>



<p>Then you are ready to go.<br />The UI of the database structure is quite good.<br />You can browse the tables by doublelick on the table in the database structure view.<br />Also you can edit values in the table view.<br />Note: <em>When the DB was created inside the Docker container you probably dont own the DB from the host and you wont be able write to it.<br />While developing just change permissions on the host, if necessary.</em></p>



<p>You can also open a <strong>Database Console</strong> window where you can test queries.<br />This is particular better than using Adminer because these test queries are persisted and will still be there the next day.<br />You can add multiple database consoles and reopen them from &#8220;Scratches and Consoles&#8221; in your Project menu.</p>



<figure class="wp-block-image size-large"><a href="https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Database_Console.png"><img decoding="async" width="1024" height="447" src="https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Database_Console-1024x447.png" alt="" class="wp-image-3052" srcset="https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Database_Console-1024x447.png 1024w, https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Database_Console-300x131.png 300w, https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Database_Console-768x335.png 768w, https://nerdpress.org/wp-content/uploads/2021/05/IntelliJ_Database_Console.png 1434w" sizes="(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px" /></a></figure>



<p>So no Adminer needed. Sqlite is just a file, dude.<br />No hassles with docker-compose anymore for DB administration and still using Docker for the app. :)</p>



<p><strong>Update 09.08.2023:</strong><br />JetBrains has now also uploaded a nice Youtube Video Tutorial on how to deal with Sqlite databases in IntelliJ IDEs like f.e. PHPStorm:<br /><a href="https://www.youtube.com/watch?v=Qw_JniULJBI" target="_blank" rel="noopener" title="">Working with SQLite Databases in any JetBrains IDE</a></p>



<p>I learned that you can now Drag and Drop Sqlite database files into the DataBase Pane and the IDE connects it directly, nice!</p>



<p></p>The post <a href="https://nerdpress.org/2021/05/17/sqlite-administration-in-intellij-ide/">Sqlite Administration in IntelliJ IDE</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Directories settings in PHPStorm and IntelliJ Ultimate</title>
		<link>https://nerdpress.org/2018/12/29/directories-settings-in-phpstorm-and-intellij-ultimate/</link>
		
		<dc:creator><![CDATA[Ivo Bathke]]></dc:creator>
		<pubDate>Sat, 29 Dec 2018 10:30:46 +0000</pubDate>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[IntelliJ Ultimate]]></category>
		<category><![CDATA[PHPStorm]]></category>
		<guid isPermaLink="false">https://nerdpress.org/?p=2840</guid>

					<description><![CDATA[<p>I recently switched from PHPStorm to IntelliJ Ultimate because of some Java. But still i am working a lot on PHP and symfony projects. One thing i usually do on symfony projects in PHPStorm is to edit the &#8220;Directories&#8221; in the settings to avoid having results from var/cache or var/logs in the search results. Also &#8230; </p>
<p class="link-more"><a href="https://nerdpress.org/2018/12/29/directories-settings-in-phpstorm-and-intellij-ultimate/" class="more-link">Continue reading<span class="screen-reader-text"> "Directories settings in PHPStorm and IntelliJ Ultimate"</span></a></p>
The post <a href="https://nerdpress.org/2018/12/29/directories-settings-in-phpstorm-and-intellij-ultimate/">Directories settings in PHPStorm and IntelliJ Ultimate</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></description>
										<content:encoded><![CDATA[<p>I recently switched from PHPStorm to IntelliJ Ultimate because of some Java. But still i am working a lot on PHP and symfony projects.</p>
<p>One thing i usually do on symfony projects in PHPStorm is to edit the <i>&#8220;Directories&#8221;</i> in the settings to avoid having results from <em>var/cache</em> or <em>var/logs</em> in the search results.</p>
<p>Also it slows down the search which i heavily use. So i exlude all folders that should not be searched because they are cache files or are redundant in some other way.</p>


<span id="more-2840"></span>



<figure class="wp-block-image"><a href="https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-10-48-51.png"><img decoding="async" width="1024" height="627" src="https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-10-48-51-1024x627.png" alt="" class="wp-image-2843" srcset="https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-10-48-51-1024x627.png 1024w, https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-10-48-51-300x184.png 300w, https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-10-48-51-768x470.png 768w, https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-10-48-51.png 1920w" sizes="(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px" /></a><figcaption>PHPStorm Directories Settings</figcaption></figure>



<p>See this <strong>SO</strong> post for further discussion: <a rel="noreferrer noopener" href="https://stackoverflow.com/questions/35654320/how-to-configure-directories-when-using-a-symfony-project-in-phpstorm" target="_blank">https://stackoverflow.com/questions/35654320/how-to-configure-directories-when-using-a-symfony-project-in-phpstorm</a></p>



<p>But in IntelliJ Ultimate its a bit different and it took me a bit to figure out.<br>Here the equivalent is located under <em>&#8220;Project Structure-&gt;Modules&#8221;</em>.<br>Here you can exclude Directories, set &#8220;test&#8221; and &#8220;source&#8221; folders.</p>



<figure class="wp-block-image"><a href="https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-11-00-16.png"><img decoding="async" width="1024" height="627" src="https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-11-00-16-1024x627.png" alt="" class="wp-image-2844" srcset="https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-11-00-16-1024x627.png 1024w, https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-11-00-16-300x184.png 300w, https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-11-00-16-768x470.png 768w, https://nerdpress.org/wp-content/uploads/2018/12/Bildschirmfoto-vom-2018-12-29-11-00-16.png 1920w" sizes="(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px" /></a><figcaption>IntelliJ Ultimate Modules settings</figcaption></figure>



<p>Also it seems settings are imported from PHPStorm settings already when using a former PHPStorm project in IntelliJ Ultimate. Nice :)</p>The post <a href="https://nerdpress.org/2018/12/29/directories-settings-in-phpstorm-and-intellij-ultimate/">Directories settings in PHPStorm and IntelliJ Ultimate</a> first appeared on <a href="https://nerdpress.org">Nerdpress.org</a>.]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
