Skip to content

Commit 064e6e2

Browse files
committed
readme
1 parent 8794a97 commit 064e6e2

20 files changed

+735
-722
lines changed

Connection.vb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
Imports Oracle.DataAccess.Client
33

44
Public Class Connection
5-
Inherits Databasic.Connection
5+
Inherits Databasic.Connection
66

7-
Public Overrides ReadOnly Property Provider As DbConnection
8-
Get
9-
Return Me._provider
10-
End Get
11-
End Property
7+
Public Overrides ReadOnly Property Provider As DbConnection
8+
Get
9+
Return Me._provider
10+
End Get
11+
End Property
1212
Private _provider As OracleConnection
1313

1414
Public Overrides ReadOnly Property ProviderResource As System.Type = GetType(ProviderResource)
@@ -17,7 +17,7 @@ Public Class Connection
1717

1818
Public Overrides ReadOnly Property Statement As System.Type = GetType(Statement)
1919

20-
Public Overrides Sub Open(dsn As String)
20+
Public Overrides Sub Open(dsn As String)
2121
Me._provider = New OracleConnection(dsn)
2222
Me._provider.Open()
2323
AddHandler Me._provider.InfoMessage, AddressOf Connection.errorHandler

Databasic.Oracle.nuspec

Lines changed: 0 additions & 34 deletions
This file was deleted.

Databasic.OracleSql.nuspec

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
3+
<metadata minClientVersion="2.6">
4+
<id>Databasic.OracleSql</id>
5+
<version>1.1.0.0</version>
6+
<title>Databasic - Oracle SQL Package</title>
7+
<authors>Tom Flidr</authors>
8+
<owners>Tom Flidr</owners>
9+
<licenseUrl>https://opensource.org/licenses/BSD-3-Clause</licenseUrl>
10+
<projectUrl>https://github.com/databasic-net</projectUrl>
11+
<iconUrl>https://raw.githubusercontent.com/databasic-net/databasic/master/gfx/databasic-icon.ico</iconUrl>
12+
<language>en-US</language>
13+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14+
<description>
15+
C#/VB.NET database utility to write pure Oracle queries and load data into environment variables and instances.
16+
</description>
17+
<copyright>Copyright © 2017</copyright>
18+
<tags>sql oracle orcl database query command select insert update delete dml tool utility</tags>
19+
<dependencies>
20+
<!--dependency id="System" version="4.0.0.0" />
21+
<dependency id="System.Core" version="4.0.0.0" />
22+
<dependency id="System.Data" version="4.0.0.0" /-->
23+
<dependency id="Oracle.DataAccess" version="4.121.2.0" />
24+
<dependency id="Databasic.Core" version="1.1.0.0" />
25+
</dependencies>
26+
<releaseNotes>https://github.com/databasic-net/databasic/releases</releaseNotes>
27+
</metadata>
28+
<files>
29+
<file src="content/App.config.install.xdt" target="content/App.config.install.xdt" />
30+
<file src="content/Web.config.install.xdt" target="content/Web.config.install.xdt" />
31+
<file src="content/App.config.uninstall.xdt" target="content/App.config.uninstall.xdt" />
32+
<file src="content/Web.config.uninstall.xdt" target="content/Web.config.uninstall.xdt" />
33+
</files>
34+
</package>

Databasic.Oracle.vbproj renamed to Databasic.OracleSql.vbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
<None Include="content\App.config.uninstall.xdt" />
9494
<None Include="content\Web.config.install.xdt" />
9595
<None Include="content\Web.config.uninstall.xdt" />
96-
<None Include="Databasic.Oracle.nuspec" />
96+
<None Include="Databasic.OracleSql.nuspec" />
9797
<None Include="My Project\Application.myapp">
9898
<Generator>MyApplicationCodeGenerator</Generator>
9999
<LastGenOutput>Application.Designer.vb</LastGenOutput>

My Project/Application.Designer.vb

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

My Project/AssemblyInfo.vb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Imports System.Runtime.InteropServices
88

99
' Review the values of the assembly attributes
1010

11-
<Assembly: AssemblyTitle("Databasic.Oracle")>
11+
<Assembly: AssemblyTitle("Databasic.OracleSql")>
1212
<Assembly: AssemblyDescription("Databasic - C#/VB.NET database utility
1313
- focusing on queries primarily based on pure SQL commands, no linq transations
1414
- arranging data into primitive types, typed active record classes, collections and more
1515
- allowing to run any nonselect queries")>
16-
<Assembly: AssemblyCompany("")>
17-
<Assembly: AssemblyProduct("Databasic.Oracle")>
16+
<Assembly: AssemblyCompany("")>
17+
<Assembly: AssemblyProduct("Databasic.OracleSql")>
1818
<Assembly: AssemblyCopyright("Copyright © 2017")>
1919
<Assembly: AssemblyTrademark("Tom Flidr")>
2020

@@ -25,10 +25,10 @@ Imports System.Runtime.InteropServices
2525

2626
' Version information for an assembly consists of the following four values:
2727
'
28-
' Major Version
29-
' Minor Version
30-
' Build Number
31-
' Revision
28+
' Major Version
29+
' Minor Version
30+
' Build Number
31+
' Revision
3232
'
3333
' You can specify all the values or you can default the Build and Revision Numbers
3434
' by using the '*' as shown below:

My Project/Resources.Designer.vb

Lines changed: 46 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)