- REFERENCE9 min read
So you want Database Versioning?
Here at DoltHub, we've had a lot of success with our "So you want..." series of blog posts helping people find Dolt when they are looking for it. Dolt is a lot of things. Dolt is a version controlled database, a Git database, Git for data, data…
Read More
- REFERENCESQL7 min read
Old School DBT
Relational databases are an organizational step change improvement over flat files like Excel or JSON. Strict typing improves data quality and maintainability over time. Schema mutations, data versioning, lineage are tracked. And you get all of the...
Read More - SQLDOLTGRES7 min read
Doltgres Correctness Update
We are hard at work building Doltgres , the Postgres-compatible version of Dolt , the world's first and only version-controlled SQL database. We are planning a public Beta launch of Doltgres in the first quarter of 2025 , and one of the most ...
Read More - REFERENCE7 min read
What's up with all these Hashes?
Dolt is the only content addressed SQL database. Dolt uses specific algorithms to generate immutable content addresses for most internal objects in your database. This article explains how that works and how you can access and use those content addresses.
Read More - SQL4 min read
fmt.Sprintf vs String Concat
String concatenation isn't the most elegant looking code: getFieldName := gf . tableName + "+" + gf . ColName But it's quite a bit faster than fmt.Sprintf , which arguably looks more organized: getFieldName := fmt ....
Read More - DOLTGRESSQL6 min read
Doltgres Now Supports Users
We're continuing to make progress on DoltgreSQL , which is a version of Dolt built to be a drop-in replacement for PostgreSQL. Dolt , is a MySQL compatible database is built from the ground up with Git-influenced version control features. Th...
Read More - 7 min read
Building at Scale, Amazon style
You're going to build your applications differently on Dolt.
Read More - TECHNICAL15 min read
Multi-Source Replication From Dolt to MySQL
Dolt has robust support for MySQL's replication protocol, allowing Dolt to be a source or a replica in a MySQL replication topology. In this blog post, we show how to set up a MySQL server to use multi-source replication to synchronize data from multiple Dolt servers.
Read More - REFERENCE10 min read
An Ooey GUI Guide to Using Dolt
Like Git and MySQL, its forebears, Dolt started as a command line utility. But over the past five years, we've upped Dolt's graphical user interface game. This blog explains how to use Dolt without ever touching a command line interface.
Read More - INTEGRATION6 min read
Use Dolt With MySQL Connector in Python
Do you use Python? It's easy to connect to Dolt SQL server.
Read More - 10 min read
Sleuthing resource leaks in Dolt
Follow along as we recount our recent sleuthing adventures tracking down resource leaks in Dolt.
Read More - REFERENCE3 min read
Dolt Roadmap update
Read what we've launched recently at Dolthub and what's going to launch soon
Read More - WORKBENCH2 min read
How to Publish a Microsoft Windows Application
A step-by-step guide on how to publish a Desktop Application to the Microsoft Store.
Read More - REFERENCE13 min read
Anatomy of a Dolt Database
What does Dolt look like under the hood? This blog goes into details on all the files Dolt uses to provide you the world's first version controlled SQL database.
Read More - GOLANG4 min read
A Useful Pattern for Nil Channel Values in Go
Sending or receiving from a nil channel in Go blocks indefinitely. Why would we want this behavior and how can we use it effectively?
Read More - SQL4 min read
Automatic Statistics
DoltDB is the first relational database that supports Git-like version control primitives like branch , diff , and merge . All our versioning features exist alongside full MySQL compatibility and near MySQL latency parity . The latest re...
Read More - 8 min read
- WORKBENCH3 min read
How to Publish a Mac Desktop App Outside the App Store
A step-by-step guide on packaging, signing, and notarizing a Mac desktop app for distribution outside the App Store.
Read More - REFERENCE6 min read
- 11 min read
- FEATURE RELEASEWORKBENCHDOLTGRES2 min read
The Dolt Workbench Now Supports Doltgres
The Dolt Workbench now supports Doltgres, Postgres for Dolt. Learn how to configure a Doltgres database and add data using Git-like version control workflows.
Read More