
Search In
I am working on web project and facing session storing problem, actually i need to store session details into MYSQL database but don't know how to do this?
Laravel PHP framework is developed to make a few development tasks easier for developers for example:
authentication, sessions, caching and routing.
That means web application development difficulties are resolved using the Laravel
A transaction is any unit of work done against the database.A transaction can be used to save the changes made to the database, it can be used to rollback the database to any save point.
For example say if you are creating or updating a record or de
Do Software Engineers Write Code?
Software engineers are professionals that create programs responsible for telling computers what to do. They do so by applying computer science as well as engineering concepts to design systems. Usually, software en
This blog will help you to restrict data from a database.
You can restrict the rows returned from the query by using the WHERE clause. A WHERE clause contains a condition that must be met, and it directly follows the FROM clause. If the condition i
This blog will help you to restrict data from a database.
You can restrict the rows returned from the query by using the WHERE clause. A WHERE clause contains a condition that must be met, and it directly follows the FROM clause. If the condition i
Following are the possible test scenarios to test Database:-
1) Exact data is saved in database on successful page submission.
2) Only after successful completion of operation data is saved in database.
3) To test values for columns which does not a
There are many types of latest developments in Odoo,That You Have To Know.
1- Odoo use external authentication providers, sign in with Social Media-like
(i) Twitter Account
(ii) Facebook Account
(iii) LinkedIn Account
(iv) youtube account
(v) skype
While performing database interactions you need to made a repository class in which all SQL mehods are predefined.
That class is called as Base Repository
Imports System.Data.SqlClient
Imports System.Xml
Imports System.Globaliz
Sometimes we need to find table list present in a database so that we can identify which table we have to create and which one not.
To work in a particular database we need to use the below statement first:
use database_name;
Example:
use demo;
