├── .gitignore ├── App.config ├── DebugSetup.ps1 ├── GetDbProviderInfo.cs ├── InvokeFirebirdQuery.cs ├── InvokeMySqlQuery.cs ├── InvokeOdbcQuery.cs ├── InvokeOracleQuery.cs ├── InvokePostgreSqlQuery.cs ├── InvokeQuery.csproj ├── InvokeQuery.psd1 ├── InvokeQuery.sln ├── InvokeQueryBase.cs ├── InvokeSqlCompactQuery.cs ├── InvokeSqlServerQuery.cs ├── InvokeSqliteQuery.cs ├── InvokeTest.cs ├── LICENSE ├── NewDatabaseBase.cs ├── NewSqlCompactDatabase.cs ├── NewSqlQuery.cs ├── NewSqliteDatabase.cs ├── NullDisposable.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── SecureStringExtensions.cs ├── SqlQuery.cs ├── Test ├── MySqlSetup.sql ├── MySqlTest.ps1 ├── SqlServerSetup.sql └── SqlServerTest.ps1 └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/App.config -------------------------------------------------------------------------------- /DebugSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/DebugSetup.ps1 -------------------------------------------------------------------------------- /GetDbProviderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/GetDbProviderInfo.cs -------------------------------------------------------------------------------- /InvokeFirebirdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/InvokeFirebirdQuery.cs -------------------------------------------------------------------------------- /InvokeMySqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/InvokeMySqlQuery.cs -------------------------------------------------------------------------------- /InvokeOdbcQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/InvokeOdbcQuery.cs -------------------------------------------------------------------------------- /InvokeOracleQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/InvokeOracleQuery.cs -------------------------------------------------------------------------------- /InvokePostgreSqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/InvokePostgreSqlQuery.cs -------------------------------------------------------------------------------- /InvokeQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/InvokeQuery.csproj -------------------------------------------------------------------------------- /InvokeQuery.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/InvokeQuery.psd1 -------------------------------------------------------------------------------- /InvokeQuery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/InvokeQuery.sln -------------------------------------------------------------------------------- /InvokeQueryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/InvokeQueryBase.cs -------------------------------------------------------------------------------- /InvokeSqlCompactQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/InvokeSqlCompactQuery.cs -------------------------------------------------------------------------------- /InvokeSqlServerQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/InvokeSqlServerQuery.cs -------------------------------------------------------------------------------- /InvokeSqliteQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/InvokeSqliteQuery.cs -------------------------------------------------------------------------------- /InvokeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/InvokeTest.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/LICENSE -------------------------------------------------------------------------------- /NewDatabaseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/NewDatabaseBase.cs -------------------------------------------------------------------------------- /NewSqlCompactDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/NewSqlCompactDatabase.cs -------------------------------------------------------------------------------- /NewSqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/NewSqlQuery.cs -------------------------------------------------------------------------------- /NewSqliteDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/NewSqliteDatabase.cs -------------------------------------------------------------------------------- /NullDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/NullDisposable.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/README.md -------------------------------------------------------------------------------- /SecureStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/SecureStringExtensions.cs -------------------------------------------------------------------------------- /SqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/SqlQuery.cs -------------------------------------------------------------------------------- /Test/MySqlSetup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/Test/MySqlSetup.sql -------------------------------------------------------------------------------- /Test/MySqlTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/Test/MySqlTest.ps1 -------------------------------------------------------------------------------- /Test/SqlServerSetup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/Test/SqlServerSetup.sql -------------------------------------------------------------------------------- /Test/SqlServerTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/Test/SqlServerTest.ps1 -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctigeek/InvokeQueryPowershellModule/HEAD/packages.config --------------------------------------------------------------------------------