How to store false or true in MySQL

How to store false or true in MySQL

MySQL Boolean value, stores false or true

In short, the Boolean values ​​stored in the database are 0 and 1, which is equivalent to a one-byte INT integer.

Specific operations

If it is a visual interface, you can directly select Boolean and set the length to 1. The final display effect is equivalent to TINYINT(1)

So, zero == false; nonzero == true

Storing Boolean values ​​in MySQL database

In Java programming, we often encounter situations where boolean values ​​are written to MySQL databases. However, the MySQL database does not have a Boolean type. Its Boolean values ​​are represented by the numbers 0 and 1.

Next, we use Java to demonstrate how to save Boolean values ​​to MySQL database

package database;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import com.qs.database.DBConnection;
public class JavaMysqlBoolean {
 
 public static void main(String[] args) {
  if(DBConnection.conn==null){
   DBConnection.openConn();
  }
  PreparedStatement ps = null;
  try {
   String sql = "insert into testboolean(name,password,isAdult) values(?,?,?)";
   ps = DBConnection.conn.prepareStatement(sql);
   
   ps.setString(1, "lisi");
   ps.setString(2, "1");
   ps.setBoolean(3, false);
   
   ps.executeUpdate();
   
  } catch (SQLException e) {
   e.printStackTrace();
  }
 }
}
package com.qs.database;
import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.Properties;
public class DBConnection {
 public static Connection conn = null;
 public static String driverClass = "";
 public static String dbURL = "";
 public static String dbUser = "";
 public static String dbPwd = "";
 static {
  loadProperty();
 }
 // Read the configuration file public static boolean loadProperty() {
  Properties properties = new Properties();
  try {
   properties.load(DBConnection.class.getResourceAsStream("db.properties"));
   driverClass = properties.getProperty("drivername");
   dbURL = properties.getProperty("dburl");
   dbUser = properties.getProperty("username");
   dbPwd = properties.getProperty("password");
  } catch (IOException e) {
   System.out.println("Failed to read configuration file");
   e.printStackTrace();
   return false;
  }
  return true;
 }
 public static void openConn() {
  // Load the driver class try {
   Class.forName(driverClass).newInstance();
  } catch (InstantiationException | IllegalAccessException | ClassNotFoundException e) {
   System.out.println("Driver class not found, loading failed");
   return;
  }
  // Get a connection to the specified database try {
   conn = DriverManager.getConnection(dbURL, dbUser, dbPwd);
  } catch (SQLException e) {
   e.printStackTrace();
  }
 }
 public void closeConn() {
  if (conn != null) {
   try {
    conn.close();
    conn = null;
   } catch (SQLException e) {
    e.printStackTrace();
   }
  }
 }
}

Properties file db.properties

drivername=org.gjt.mm.mysql.Driver
dburl=jdbc:mysql://localhost:3306/mydatabase?useUnicode=true&characterEncoding=utf-8
username=root
password=root 

Write the picture description here

Write the picture description here

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • How to operate Boolean fields in MySQL database with JDBC
  • Mybatis connects to MySQL database Tinyint is a boolean type detailed explanation
  • Mysql NULL caused the pit

<<:  Summary of the application of decorative elements in web design

>>:  Detailed explanation of Axios asynchronous communication in Vue

Recommend

How to support full Unicode in MySQL/MariaDB

Table of contents Introduction to utf8mb4 UTF8 by...

How to install Mysql5.7 in Centos6

environment Centos 6.6 MySQL 5.7 Install If the s...

Web Design Experience: Self-righteous Web Designers

1. Trash or Classic? Web technology updates very ...

Vue realizes the product magnifying glass effect

This article example shares the specific code of ...

ElementUI implements sample code for drop-down options and multiple-select boxes

Table of contents Drop-down multiple-select box U...

A brief discussion on DDL and DML in MySQL

Table of contents Preface 1. DDL 1.1 Database Ope...

Three.js realizes Facebook Metaverse 3D dynamic logo effect

Table of contents background What is the Metavers...

How to build a standardized vmware image for kubernetes under rancher

When learning kubernetes, we need to practice in ...

Use iptables and firewalld tools to manage Linux firewall connection rules

Firewall A firewall is a set of rules. When a pac...

Discussion on the problem of garbled characters in iframe page parameters

I encountered a very unusual parameter garbled pro...

Tutorial on using Multitail command on Linux

MultiTail is a software used to monitor multiple ...

2 reasons why html-css tag style setting does not work

1 CSS style without semicolon ";" 2 Tags...

An article to teach you HTML

If you are not committed to becoming an artist, t...