Skip to content

Category: Database

All posts related to using databases.

Guest Post: Managing Database Schema Control Over Multiple Versions

Wayne Golding has been a Xojo developer since 2005. He operates two IT companies, a Network/Systems services co & DRNine11 an offsite backup & DR co. Though he primarily uses Xojo for internal management systems and utilities, Wayne’s hobby is robotics where he uses Xojo to communicate with Arduino devices.

When distributing applications with a database component you will undoubtedly upgrade your database schema as your application matures. So how do you manage the schema within your application?

Comments closed

Database Transactions

I am often asked when it makes sense to use Commit with your database code. The answer is always “it depends”. To go into more detail, let’s talk a bit about transactions.

Comments closed

The Xojo Plugins Folder

Xojo ships with 5 database plugins in the Plugins folder. These plugins are what you use to connect to the following database servers and ODBC:

  • Microsoft SQL Server
  • MySQL
  • Oracle
  • PostgreSQL

The ODBC database plugin allows you to connect to any database engine that supports ODBC connections.

Comments closed

PostgreSQL SSL Connection

 

Your Xojo apps can connect to many different databases, including PostgreSQL, MySQL, Oracle, Microsoft SQL Server and ODBC. Learn more about connecting to different database servers here.

We get all sorts of questions about connecting your apps to specific databases. Recently, a developer  asked about connecting his app to the PostgreSQL database using SSL for a secure connection. In Xojo this is simple.

Comments closed