Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Uploading Pokemon data from a CSV into a PlanetScale SQL Database, а также все другие курсы, прямо сейчас!
Премиум
  • Урок 1. 00:01:47
    Creating a new Cargo Workspace with our first package
  • Урок 2. 00:04:02
    Reading CSV rows into Rust using the csv crate
  • Урок 3. 00:10:55
    Deserializing CSV rows into our own Rust structs and types
  • Урок 4. 00:00:52
    Deploying a database with PlanetScale
  • Урок 5. 00:04:36
    Database types are not your application types
  • Урок 6. 00:06:41
    Implementing the Debug trait for third party types
  • Урок 7. 00:06:58
    Writing a SQL script to set up tables in a PlanetScale SQL Database
  • Урок 8. 00:04:19
    Implementing the From and Into traits to turn a PokemonCsv into a PokemonTableRow
  • Урок 9. 00:07:57
    Using async to write a function that insert PokemonTableRows
  • Урок 10. 00:04:17
    Getting the PlanetScale connection string from an environment variable and handling errors with color_eyre
  • Урок 11. 00:04:17
    Using tokio and sqlx to connect to the PlanetScale database
  • Урок 12. 00:04:21
    Showing Iterator progress bars with indicatif
  • Урок 13. 00:06:55
    Creating more tables in SQL and inserting more data in Rust
  • Урок 14. 00:14:27
    Improving performance with FuturesUnordered, async Rust, and Streams
  • Урок 15. 00:05:18
    Shipping the PlanetScale database, schema, and data to production