<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://nsis.sourceforge.io/mediawiki/index.php?action=history&amp;feed=atom&amp;title=NsODBCext_plug-in</id>
	<title>NsODBCext plug-in - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://nsis.sourceforge.io/mediawiki/index.php?action=history&amp;feed=atom&amp;title=NsODBCext_plug-in"/>
	<link rel="alternate" type="text/html" href="https://nsis.sourceforge.io/mediawiki/index.php?title=NsODBCext_plug-in&amp;action=history"/>
	<updated>2026-04-22T03:47:36Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.17</generator>
	<entry>
		<id>https://nsis.sourceforge.io/mediawiki/index.php?title=NsODBCext_plug-in&amp;diff=25878&amp;oldid=prev</id>
		<title>Outtay: Outtay moved page User:Outtay to NsODBCext plug-in: Didn&#039;t know how to create in main</title>
		<link rel="alternate" type="text/html" href="https://nsis.sourceforge.io/mediawiki/index.php?title=NsODBCext_plug-in&amp;diff=25878&amp;oldid=prev"/>
		<updated>2023-12-11T15:41:28Z</updated>

		<summary type="html">&lt;p&gt;Outtay moved page &lt;a href=&quot;/User:Outtay&quot; class=&quot;mw-redirect&quot; title=&quot;User:Outtay&quot;&gt;User:Outtay&lt;/a&gt; to &lt;a href=&quot;/NsODBCext_plug-in&quot; title=&quot;NsODBCext plug-in&quot;&gt;NsODBCext plug-in&lt;/a&gt;: Didn&amp;#039;t know how to create in main&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;â† Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 15:41, 11 December 2023&lt;/td&gt;
				&lt;/tr&gt;
&lt;!-- diff cache key n22049_wiki-wiki_:diff::1.12:old-25877:rev-25878 --&gt;
&lt;/table&gt;</summary>
		<author><name>Outtay</name></author>
	</entry>
	<entry>
		<id>https://nsis.sourceforge.io/mediawiki/index.php?title=NsODBCext_plug-in&amp;diff=25877&amp;oldid=prev</id>
		<title>Outtay: NsODBCext plug-in</title>
		<link rel="alternate" type="text/html" href="https://nsis.sourceforge.io/mediawiki/index.php?title=NsODBCext_plug-in&amp;diff=25877&amp;oldid=prev"/>
		<updated>2023-12-11T15:40:06Z</updated>

		<summary type="html">&lt;p&gt;NsODBCext plug-in&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{PageAuthor|Outtay}}&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
nsODBCext is an NSIS ODBC Configuration Manager. Works using odbcinst32.dll. Based on SQLInstall Win API. This plugin is based on [https://nsis.sourceforge.io/NsODBC_plug-in NsODBC]. &amp;lt;br&amp;gt;&lt;br /&gt;
The main way it differs is by changing the parameter format, such that the whole stack isn&amp;#039;t read in and by also retrying the SQLInstall call with a multistring format, which is required for the SQL Server driver. &lt;br /&gt;
&lt;br /&gt;
== Download Link ==&lt;br /&gt;
&amp;lt;attach&amp;gt;NsODBCext.zip&amp;lt;/attach&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Methods ==&lt;br /&gt;
The plugin was not tested with all functions. Only AddDSN was required for my use case. Source Code is attached. Please modify as you see fit.&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
    ::AddDSN       ;[DriverName] [DSN=XXX;UID=0x777] ...&lt;br /&gt;
    ::AddSysDSN    ;[DriverName] [DSN=XXX;UID=0x777] ...&lt;br /&gt;
    ::ConfDSN      ;[DriverName] [DSN=XXX;UID=0x777] ...&lt;br /&gt;
    ::ConfSysDSN   ;[DriverName] [DSN=XXX;UID=0x777] ...&lt;br /&gt;
    ::RemoveDSN    ;[DriverName] [DSN=XXX;UID=0x777] ...&lt;br /&gt;
    ::RemoveSysDSN ;[DriverName] [DSN=XXX;UID=0x777] ...&lt;br /&gt;
    ::RemoveDefDSN ;[DriverName] [DSN=XXX;UID=0x777] ...&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Example Scripts ==&lt;br /&gt;
&amp;lt;highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  ; Create MS Access DSN &amp;amp; Data Base&lt;br /&gt;
  nsODBC::AddSysDSN &amp;quot;Microsoft Access Driver (*.mdb)&amp;quot; &amp;quot;DSN=MyDSN;DBQ=C:\Dev\MyAccess.mdb&amp;quot;&lt;br /&gt;
&lt;br /&gt;
  ; Create SQL Server DSN&lt;br /&gt;
  nsODBC::AddDSN &amp;quot;SQL Server&amp;quot; &amp;quot;DSN=MyDSN;SERVER=127.0.0.1,1433;Trusted_Connection=Yes;DATABASE=myDB&amp;quot;&lt;br /&gt;
&lt;br /&gt;
  ; Remove DSN&lt;br /&gt;
  nsODBC::RemoveSysDSN &amp;quot;Microsoft Access Driver (*.mdb)&amp;quot; &amp;quot;DSN=MyDSN&amp;quot;&lt;br /&gt;
&amp;lt;/highlight-nsis&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Plugins]]&lt;br /&gt;
[[Category:Database Functions]]&lt;/div&gt;</summary>
		<author><name>Outtay</name></author>
	</entry>
</feed>