Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

336

Downloads of v 2.13.0.0:

336

Last Update:

12 Feb 2021

Package Maintainer(s):

Software Author(s):

  • KellermanSoftware

Tags:

firebird ms access mysql oracle postgresql sqlite sql server vistadb

Easy Database Creator

  • 1
  • 2
  • 3

2.13.0.0 | Updated: 12 Feb 2021

Downloads:

336

Downloads of v 2.13.0.0:

336

Maintainer(s):

Software Author(s):

  • KellermanSoftware

Easy Database Creator 2.13.0.0

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Easy Database Creator, run the following command from the command line or from PowerShell:

>

To upgrade Easy Database Creator, run the following command from the command line or from PowerShell:

>

To uninstall Easy Database Creator, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade easy-database-creator -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade easy-database-creator -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install easy-database-creator
  win_chocolatey:
    name: easy-database-creator
    version: '2.13.0.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'easy-database-creator' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.13.0.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller easy-database-creator
{
    Name     = "easy-database-creator"
    Version  = "2.13.0.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'easy-database-creator':
  ensure   => '2.13.0.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator flcdrg on 27 Feb 2021.

Description

Creating database schemas hasn’t changed much in 20 years until now. All database management tools put you through the process of manually defining the primary keys, foreign keys, and foreign key indexes. Easy Database Creator automatically adds all primary and foreign keys. It also has intellisense for column names, database types, and lengths. Rapidly create database schemas and scripts. For example, you can connect to an existing SQL Server database, switch the database type to Sqlite and create a Sqlite database based on the schema that was in the SQL Server database. Generate C# or VB.NET Classes from tables.


tools\chocolateyinstall.ps1

$ErrorActionPreference = 'Stop'; # stop on all errors

$packageName= 'easy-database-creator' # arbitrary name for the package, used in messages
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url        = '' # download url, HTTPS preferred
$url64      = '' # 64bit URL here (HTTPS preferred) or remove - if installer contains both (very rare), use $url
$fileLocation = Join-Path $toolsDir 'EasyDatabaseCreator_Chocolatey.exe'
$destDir    = Join-Path $toolsDir 'bin'

$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $toolsDir
  fileType      = 'EXE'
  url           = $url
  url64bit      = $url64
  file         = $fileLocation

  softwareName  = 'easy-database-creator*' #part or all of the Display Name as you see it in Programs and Features. It should be enough to be unique

  checksum      = 'd9f3c5bb27af6e0aa7286af01afba84092b636bc138526f72b04f9ca3237852f'
  checksumType  = 'sha256' #default is md5, can also be sha1, sha256 or sha512
  checksum64    = 'd9f3c5bb27af6e0aa7286af01afba84092b636bc138526f72b04f9ca3237852f'
  checksumType64= 'sha256' #default is checksumType

   silentArgs    = "/SILENT=YES /DESTINATION=$destDir"
  validExitCodes= @(0, 3010, 1641)
}

Install-ChocolateyInstallPackage @packageArgs # https://chocolatey.org/docs/helpers-install-chocolatey-install-package

$DesktopPath = [Environment]::GetFolderPath("Desktop")
$StartPath = [Environment]::GetFolderPath("StartMenu")

$targetPath = Join-Path $toolsDir 'bin\KellermanSoftware.Easy-Database-Creator.exe'
$shortcutFilePath = Join-Path $DesktopPath 'Easy Database Creator.lnk'
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePath -targetPath $targetPath
$targetPath = Join-Path $toolsDir 'bin\KellermanSoftware.Easy-Database-Creator.exe'
$shortcutFilePath = Join-Path $StartPath 'Kellerman Software\Easy Database Creator\Easy Database Creator.lnk'
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePath -targetPath $targetPath
$targetPath = Join-Path $toolsDir 'bin\Easy-Database-Creator-Help.chm'
$shortcutFilePath = Join-Path $StartPath 'Kellerman Software\Easy Database Creator\Easy Database Creator Help.lnk'
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePath -targetPath $targetPath
$shortcutFilePath = Join-Path $StartPath 'Kellerman Software\Easy Database Creator\Uninstall.lnk'
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePath -targetPath 'choco' -Arguments 'uninstall easy-database-creator' -RunAsAdmin









tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors

$packageName = 'easy-database-creator'
$softwareName = 'easy-database-creator*' #part or all of the Display Name as you see it in Programs and Features. It should be enough to be unique
$installerType = 'EXE' 

$silentArgs = '/qn /norestart'
$validExitCodes = @(0, 3010, 1605, 1614, 1641)
if ($installerType -ne 'MSI') {
  $validExitCodes = @(0)
}

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName

if ($key.Count -eq 1) {
  $key | % { 
    $file = "$($_.UninstallString)"

    if ($installerType -eq 'MSI') {
      $silentArgs = "$($_.PSChildName) $silentArgs"

      $file = ''
    }

    Uninstall-ChocolateyPackage -PackageName $packageName `
                                -FileType $installerType `
                                -SilentArgs "$silentArgs" `
                                -ValidExitCodes $validExitCodes `
                                -File "$file"
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$key.Count matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | % {Write-Warning "- $_.DisplayName"}
}


$DesktopPath = [Environment]::GetFolderPath("Desktop")
$StartPath = [Environment]::GetFolderPath("StartMenu")

$shortcutFilePath = Join-Path $StartPath 'Kellerman Software\Easy Database Creator\Uninstall.lnk'
Remove-Item $shortcutFilePath
$shortcutFilePath = Join-Path $DesktopPath 'Easy Database Creator.lnk'
Remove-Item $shortcutFilePath
$shortcutFilePath = Join-Path $StartPath 'Kellerman Software\Easy Database Creator\Easy Database Creator.lnk'
Remove-Item $shortcutFilePath
$shortcutFilePath = Join-Path $StartPath 'Kellerman Software\Easy Database Creator\Easy Database Creator Help.lnk'
Remove-Item $shortcutFilePath
$shortcutFilePath = Join-Path $StartPath 'Kellerman Software\Easy Database Creator'
Remove-Item $shortcutFilePath



tools\EasyDatabaseCreator_Chocolatey.exe
md5: 709C64E14A1DA5B86D76E2EDEF73F79D | sha1: 999E67ED84F7787DFAAE179544CE84FDBE81FB9A | sha256: D9F3C5BB27AF6E0AA7286AF01AFBA84092B636BC138526F72B04F9CA3237852F | sha512: B7A46428E62A8BBB9B170FF9FCC2D50C038791CCAAD7CEE7B423DE165CEA221512AF6ABF072E1672D33086B686D5536BCD7F684A0AAC413843114ABA85AF0081
tools\EasyDatabaseCreator_Chocolatey.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <startup>
    <supportedRuntime version="v2.0.50727"/>
    <supportedRuntime version="v4.0" />
  </startup>
</configuration>
tools\LICENSE.txt

From: https://www.kellermanstores.com/downloads/licensing/easy-database-creator-license.rtf

LICENSE

Kellerman Software END-USER LICENSE AGREEMENT FOR Easy Database Creator

Kellerman Software END-USER SOFTWARE LICENSE AGREEMENT 

This End-User License Agreement ("EULA") pertains to Kellerman Software Copyrighted computer software (the "Software") in the package containing CD-ROMs, diskettes, associated media, printed materials or electronic documentation.  Please read the terms and conditions of this End-User License Agreement ("EULA") before installing or otherwise using the Software. 

This End-User License Agreement ("EULA") is a legally enforceable contract between you ("Customer" or "you") and Kellerman Software a Sole Proprietorship of Ohio ("Kellerman Software").  By clicking "I agree", installing, copying, or otherwise using any part of the Software or any associated media, any printed materials, or any "online" or electronic documentation, you agree to be bound by the terms of this EULA.  If you do not agree to the terms of this EULA, promptly return the unused Software to your supplier for a full refund. 

1.	GRANT OF NON-EXCLUSIVE, LIMITED LICENSE

The Software and related documentation is licensed, not sold. Any rights not clearly and expressly granted to you under this EULA are reserved to Kellerman Software. Provided you have paid all applicable fees, registered the Software with Kellerman Software, and otherwise complied with this EULA, Kellerman Software grants you the following personal, non-exclusive, non-transferable, limited rights:

a.	The Software may only be used by a single user per license purchased.  You may copy the Software for archival purposes, provided the copy contains all of the original Software's proprietary notices.

b.	You may not decompile, disassemble, extract or otherwise reverse engineer any of the Software. You shall not have the right to obtain or use any source code for the Software, nor copy, reproduce, disclose, rent, lease, loan, distribute or use the Software except as provided above.  


2.	WARRANTY, REMEDY, AND LIMITATIONS


a.	KELLERMAN SOFTWARE WARRANTS THAT THE SOFTWARE WILL PERFORM IN SUBSTANTIAL ACCORDANCE WITH THE ACCOMPANYING USER MANUAL FOR 90 DAYS FOLLOWING YOUR RECEIPT OF THE SOFTWARE.  THIS IS YOUR ONLY WARRANTY.

b.	KELLERMAN SOFTWARE' SOLE OBLIGATION AND YOUR EXCLUSIVE REMEDY FOR ANY WARRANTY FAILURE IS TO FOLLOW KELLERMAN SOFTWARE' REGULAR BUSINESS PRACTICES FOR THE CORRECTION, REPLACEMENT OR REMEDY OF A DEFECT.

c.	UNLESS OTHERWISE STATED ABOVE, THE SOFTWARE AND THE DOCUMENTATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK ARISING OUT OF THE USE OR PERFORMANCE OF THIS SOFTWARE REMAINS WITH YOU.  IN NO EVENT WILL Kellerman Software OR ANY OF ITS SUPPLIERS BE LIABLE FOR ANY INCIDENTAL, CONSEQUENTIAL, INDIRECT OR OTHER SPECIAL DAMAGES, INCLUDING LOST DATA, LOST REVENUES OR LOST PROFITS, EVEN IF THEY HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.  KELLERMAN SOFTWARE RESERVES THE RIGHT TO MODIFY THIS DOCUMENT AT ANY TIME WITHOUT OBLIGATION TO NOTIFY ANYONE.   IN NO EVENT SHALL KELLERMAN SOFTWARE OR ITS SUPPLIERS' LIABILITY UNDER THIS AGREEMENT EXCEED THE SUM OF ANY AMOUNTS PAID HEREUNDER BY YOU TO KELLERMAN SOFTWARE OR THE SUPPLIER.

3.	TERMINATION

The license will terminate automatically if you fail to comply with the terms, conditions, or limitations contained in this EULA, including the payment of applicable license or other fees.  You may terminate this EULA at any time (with no obligation on the part of Kellerman Software) by destroying all copies of the Software, deleting any copies of the Software from your hard drives, ceasing all use of the Software and documentation; and providing satisfactory proof to Kellerman Software that you have done so.  The disclaimer of warranty and limitations on liability contained in Section 4 shall continue in force even after your rights to use the Software are terminated.

4.   DEMO OR EVALUATION VERSIONS

If Kellerman Software designates the Software as a "Demo" or "Evaluation" version, you may use the Software solely for evaluation purposes for a 30-day period.  Use of the Software and/or documentation beyond the 30-day evaluation period violates Kellerman Software' rights, as described above, including but not limited to Kellerman Software' rights under the United States Copyright Act. You acknowledge that any Demo or Evaluation version is merely a technology demonstration that may not be at the level of performance or compatibility of generally available Kellerman Software' products. Demo or Evaluation versions are provided strictly on an "as is" basis and are subject to Section 2 above.

5.   UPGRADES

If the Software is designated by Kellerman Software as an Upgrade product, you may only use the Software if you are also currently a licensed user of the base product to which the Upgrade applies.  Unless the Kellerman Software documentation for an Upgrade specifically provides, you shall not separate upgrade products from base products, nor transfer them separately.  Kellerman Software reserves the sole and exclusive right to set its policies and prices regarding updates, upgrades and enhancements.  All other terms of this EULA apply with equal force to any such Upgrades.

6.   TRANSFER OF OWNERSHIP

You may transfer the license of the software to another owner provided that:
a.	The recipient must agree to all the terms of this EULA.
b.	You must provide all original materials including software disks, and any other part of the Software's physical distribution to the recipient.
c.	You must remove all installations of the Software.
d.	You must notify Kellerman Software in writing of the ownership transfer; including the name address, phone and email of the new owner.
e.	You must transfer all versions and upgrades of the software to the recipient.  You may not transfer previous versions and upgrades to different recipients.  


7.   GENERAL/MISCELLANEOUS CLAUSES

This EULA shall be governed by and construed under the substantive laws applicable to the State of Ohio, United States of America.  If any provision of this EULA is held to be unenforceable, the remaining provisions shall remain in full force and effect.

The undersigned agrees that this EULA is entered into at Columbus, Ohio, and further agrees that any legal or equitable dispute brought or arising under this Agreement shall be brought in the State and Federal courts for Columbus, Ohio. This Agreement constitutes the entire Agreement between the undersigned and Kellerman Software about the Software and documentation, and shall not be modified except in a writing signed by Kellerman Software. 



tools\VERIFICATION.txt

VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
This is all software from Kellerman Software.  References:  https://kellermansoftware.com/products/easy-database-creator

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status

New features, automatically creates foreign key indexes and foreign key constraints. Compatible with VistaDB Version 6


This package has no dependencies.

Discussion for the Easy Database Creator Package

Ground Rules:

  • This discussion is only about Easy Database Creator and the Easy Database Creator package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Easy Database Creator, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus