Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Active Record tutorial #1234

Merged
merged 3 commits into from
Mar 31, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Link to more realistic examples
  • Loading branch information
Jesse Seldess committed Mar 31, 2017
commit 5a78a9af9d419b7c0230f08dccd979b1ad6f72cc
4 changes: 3 additions & 1 deletion build-a-go-app-with-cockroachdb-gorm.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ toc: false

This tutorial shows you how build a simple Go application with CockroachDB using a PostgreSQL-compatible driver or ORM. We've tested and can recommend the [Go pq driver](https://godoc.org/github.com/lib/pq) and the [GORM ORM](http://jinzhu.me/gorm/), so those are featured here.

{{site.data.alerts.callout_success}}For a more realistic use of GORM with CockroachDB, see our <a href="https://github.com/cockroachdb/examples-orms"><code>examples-orms</code></a> repository.{{site.data.alerts.end}}

<div id="toc"></div>

## Before You Begin
Expand Down Expand Up @@ -83,7 +85,7 @@ $ cockroach sql -e 'SELECT id, balance FROM accounts' --database=bank

## What's Next?

Read more about using the [GORM ORM](http://jinzhu.me/gorm/).
Read more about using the [GORM ORM](http://jinzhu.me/gorm/), or check out a more realistic implementation of GORM with CockroachDB in our [`examples-orms`](https://github.com/cockroachdb/examples-orms) repository.

You might also be interested in using a local cluster to explore the following core CockroachDB features:

Expand Down
4 changes: 3 additions & 1 deletion build-a-java-app-with-cockroachdb-hibernate.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ toc: false

This tutorial shows you how build a simple Java application with CockroachDB using a PostgreSQL-compatible driver or ORM. We've tested and can recommend the [Java jdbc driver](https://jdbc.postgresql.org/) and the [Hibernate ORM](http://hibernate.org/), so those are featured here.

{{site.data.alerts.callout_success}}For a more realistic use of Hibernate with CockroachDB, see our <a href="https://github.com/cockroachdb/examples-orms"><code>examples-orms</code></a> repository.{{site.data.alerts.end}}

<div id="toc"></div>

## Before You Begin
Expand Down Expand Up @@ -93,7 +95,7 @@ $ cockroach sql -e 'SELECT id, balance FROM accounts' --database=bank

## What's Next?

Read more about using the [Hibernate ORM](http://hibernate.org/orm/).
Read more about using the [Hibernate ORM](http://hibernate.org/orm/), or check out a more realistic implementation of Hibernate with CockroachDB in our [`examples-orms`](https://github.com/cockroachdb/examples-orms) repository.

You might also be interested in using a local cluster to explore the following core CockroachDB features:

Expand Down
4 changes: 3 additions & 1 deletion build-a-nodejs-app-with-cockroachdb-sequelize.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ toc: false

This tutorial shows you how build a simple Node.js application with CockroachDB using a PostgreSQL-compatible driver or ORM. We've tested and can recommend the [Node.js pg driver](https://www.npmjs.com/package/pg) and the [Sequelize ORM](http://docs.sequelizejs.com/en/v3/), so those are featured here.

{{site.data.alerts.callout_success}}For a more realistic use of Sequelize with CockroachDB, see our <a href="https://github.com/cockroachdb/examples-orms"><code>examples-orms</code></a> repository.{{site.data.alerts.end}}

<div id="toc"></div>

## Before You Begin
Expand Down Expand Up @@ -82,7 +84,7 @@ $ cockroach sql -e 'SELECT id, balance FROM accounts' --database=bank

## What's Next?

Read more about using the [Sequelize ORM](http://docs.sequelizejs.com/en/v3/).
Read more about using the [Sequelize ORM](http://docs.sequelizejs.com/en/v3/), or check out a more realistic implementation of Sequelize with CockroachDB in our [`examples-orms`](https://github.com/cockroachdb/examples-orms) repository.

You might also be interested in using a local cluster to explore the following core CockroachDB features:

Expand Down
4 changes: 3 additions & 1 deletion build-a-python-app-with-cockroachdb-sqlalchemy.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ toc: false

This tutorial shows you how build a simple Python application with CockroachDB using a PostgreSQL-compatible driver or ORM. We've tested and can recommend the [Python psycopg2 driver](http://initd.org/psycopg/docs/) and the [SQLAlchemy ORM](https://docs.sqlalchemy.org/en/latest/), so those are featured here.

{{site.data.alerts.callout_success}}For a more realistic use of SQLAlchemy with CockroachDB, see our <a href="https://github.com/cockroachdb/examples-orms"><code>examples-orms</code></a> repository.{{site.data.alerts.end}}

<div id="toc"></div>

## Before You Begin
Expand Down Expand Up @@ -85,7 +87,7 @@ $ cockroach sql -e 'SELECT id, balance FROM accounts' --database=bank

## What's Next?

Read more about using the [SQLAlchemy ORM](https://docs.sqlalchemy.org/en/latest/).
Read more about using the [SQLAlchemy ORM](https://docs.sqlalchemy.org/en/latest/), or check out a more realistic implementation of SQLAlchemy with CockroachDB in our [`examples-orms`](https://github.com/cockroachdb/examples-orms) repository.

You might also be interested in using a local cluster to explore the following core CockroachDB features:

Expand Down