How to Limit Rows in a SQL Server ResultSet

PAGINATION

In this tutorial, we will learn how to Limit Rows in a SQL Server ResultSet and can be used for pagination. This will help you optimize if dealing with a large amount of data and use a paginated display in our front-end application. We will be using the OFFSET and FETCH clauses in Microsoft SQL … Read more

Categories SQL

Building CRUD App With Flutter And Firebase

Crud Operation in flutter using Firebase

In the previous post, we created a simple project Flutter login and registration using Firebase, this time we will make a simple Crud Operation in flutter using Firebase. We are going to implement a CRUD(create, read, update and delete operations) with Firebase FireStore Database. What is FireStore Database? Firestore is a document-oriented database that provides … Read more