GithubHelp home page GithubHelp logo

ecto_test's Introduction

EctoTest

Elixirsips Ecto episode #1 updated

How to use

start iex

$ iex -S mix
Erlang/OTP 17 [erts-6.0] [source] [64-bit] [smp:8:8] [async-threads:10] [hipe] [kernel-poll:false] [dtrace]

Interactive Elixir (0.14.4-dev) - press Ctrl+C to exit (type h() ENTER for help)

create struct/record

iex(1)>  d = %EctoTest.Dweet{content: "foo"}
%EctoTest.Dweet{author: nil, content: "foo", id: nil}

start supervisor

iex(2)> EctoTest.Supervisor.start_link
{:ok, #PID<0.105.0>}

insert record (struct)

iex(3)> EctoTest.Repo.insert(d)
%EctoTest.Dweet{author: nil, content: "foo", id: 1}

retrieve record

iex(4)> EctoTest.Repo.get(EctoTest.Dweet, 1)
%EctoTest.Dweet{author: nil, content: "foo", id: 1}

ecto_test's People

Contributors

dgoldie avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.