Tannutechiegigs-digital-markeing.hashnode.dev·Jan 13, 2025Emerging Trends in ORM: What Digital Marketers Need to KnowOnline Reputation Management (ORM) is an ever-evolving field. As digital landscapes shift and consumer behavior changes, staying updated on emerging trends is essential for digital marketers. These trends not only help businesses maintain a positive ...Trends in ORM
Promise Dashpromisedash.hashnode.dev·Jan 10, 2025A Beginner’s Guide to PrismaThis guide will explore Prisma, an open-source ORM (Object-Relational Mapping) tool that simplifies database management in modern applications. Whether you're new to databases or looking for a more efficient way to manage them, Prisma can be a game-c...prisma
Alex Cloudstarblog.alexcloudstar.com·Jan 5, 2025Getting Started with Prisma and Neon DB: A Modern Approach to Database ManagementIn the world of modern application development, managing your database effectively is as critical as writing clean code. Developers today are looking for solutions that are powerful, flexible, and easy to integrate into their workflows. Prisma and Ne...53 readsDatabases
Tannutechiegigs-digital-markeing.hashnode.dev·Jan 4, 2025How to Maintain a Positive Online Presence for Personal BrandingIn today’s interconnected world, your online presence is often the first thing people will see when they look you up—whether it’s potential employers, business partners, clients, or followers. Your personal brand isn't just about your skills or exper...Online presence
Akash Desardaimportidea.dev·Dec 26, 2024How to effectively work with Databases in PythonIntroduction The age-old debate on the use of Raw SQL v/s ORM is still very much alive in today’s world. Let’s see some of the comparing points AspectRaw SQLORM (Object-Relational Mapping) Ease of UseRequires knowledge of SQL syntax and databa...Data EngneeringPython
FENG JUNYUANcrazyrunsnail.hashnode.dev·Dec 22, 2024Refactor: status to statuses using mybatisBefore: <if test="status = 0"> and t.status = 0 and t.status1 = 1 </if> <if test="status = 1"> and t.status = 0 and t.status2 = 2 </if> <if test ="status != 2"> and t.status2 != 2 </if> After: <if test="statuses != null and statuses.size() > 0...Java
Muhammad Sufiyaninnosufiyan.hashnode.dev·Dec 18, 2024Object-Relational Mapping (ORM)What is ORM? ORM, short for Object-Relational Mapping, is an additional piece of software or a service that acts as a bridge between your application code and the database. Its main responsibility is to help you retrieve or save data to the database ...Databases and ORM'sorm
aman Jaiswalamanog.hashnode.dev·Dec 16, 2024What are ORMs? & Understanding Prisma and its ImplementingOfficial Definition ORM stands for Object-Relational Mapping, a programming technique used in software development to convert data between incompatible type systems in object-oriented programming languages. This technique creates a "virtual object da...orm
Diluk Angelodilukangelo.dev·Dec 12, 2024FeaturedMastering Prisma ORM: A Practical Guide to Deployment and CI/CDWhen I first started using Prisma ORM, I was blown away by how it streamlined my database workflows. But when it came to deploying my applications to production, things got tricky. Over time, I learned a lot about how to navigate these challenges. In...9 likes·164 readsprisma
Danish Khandanishpy.hashnode.dev·Dec 6, 2024Improving database performance in Django part-1: Optimized QueriesIf you want to improve performance of your django application, basically it's related to, improving database Queries. Writting efficient ORM queries is key. How much operations are taking place while any action performed by your view, less operations...69 readsDjango: Beyond CRUDDjango