Pony examples Pony examples Instead of creating models manually, you can check the examples from the Pony distribution package: >>> from pony . orm . examples . estore impo...
Identity equality Structural equality Primitives and equality Pony features two forms of equality: by structure and by identity. Identity equality Identity equality checks i...
Pony query examples Pony query examples For demonstrating Pony queries let’s use the example from the Pony ORM distribution. You can try these queries yourself in the interactiv...
What is Pony ORM? PonyORM community What is Pony ORM? Pony is an advanced object-relational mapper. An ORM allows developers to work with the content of a database in the form ...
Getting Started with Pony Getting Started with Pony Installing Creating the database object Defining entities Database binding Mapping entities to database tables Using th...
Static vs Dynamic: What’s the difference? Types are guarantees What guarantees does Pony’s type system give me? Pony is a statically typed language, like Java, C#, C++, and man...
Safely does it C types Get and Pass Pointers to FFI Read Struct Values from FFI FFI functions raising errors FFI is built into Pony and native libraries may be directly refer...
left side must be something that can be assigned to cannot write to a field in a box function receiver type is not a subtype of target type A note on compiler versions You’ve ...
How Pony avoids lost updates How Pony avoids lost updates Lower isolation levels increase the ability of many users to access data at the same time, but it also can lead to data...