首页 > 其他分享 >5.29博客

5.29博客

时间:2024-06-16 20:22:24浏览次数:23  
标签:02 preparedStatement setString 博客 userInfo com app 5.29

上午计网下午建民老师的课

学习内容:安卓

package com.example.app_02.utils;
import com.example.app_02.database.MySQLConnection; import com.example.app_02.entity.User; import com.example.app_02.entity.UserInfo;
public class UserInfoDao extends MySQLConnection {     public int insertUserInfo(UserInfo userInfo) {         int value = 0;         connect();         try {             String sql = "insert into userinfo(studentid, name, phonenumber, class) values(?,?,?,?)";             preparedStatement = connection.prepareStatement(sql);             //将数据插入数据库中             preparedStatement.setString(1, userInfo.getStudentid());             preparedStatement.setString(2, userInfo.getName());             preparedStatement.setString(3, userInfo.getPhonenumber());             preparedStatement.setString(4, userInfo.getClassname());             value = preparedStatement.executeUpdate();         } catch (Exception e) {             e.printStackTrace();         } finally {             close();         }         return value;     } }

标签:02,preparedStatement,setString,博客,userInfo,com,app,5.29
From: https://www.cnblogs.com/zjm921/p/18251186

相关文章

  • 5.30博客
    周三:python和工程数学python学习:importrequestsfrombs4importBeautifulSoupasbsimportpandasaspdfrommatplotlibimportpyplotaspltdefget_rank(url):count=0 rank=\[\] headers={    "user-agent":"Mozilla/5.0(WindowsNT10......
  • 5.14博客
    学习内容:安卓<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"  android:layout_height="wrap_content"......
  • 5.13博客
    看看日历又是周一,本来都起床了感觉尸体有点不舒服,再躺会吧学习内容:安卓<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="......
  • 5.17博客
    排球课比赛快完了,目前为止一场没输过,我感觉这跟我课脱不了关系学习内容:spring-boot注册条件安卓:<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:id="@+id/ll_item"  an......
  • 5.6博客
    过完五一假了该进入学习状态了学习内容:安卓<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"  android:layout_height="m......
  • 4.30博客
    上午计网下午建民课晚上跑步真是充实学习内容:安卓<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="vertical&qu......
  • 2024年6月16日 18:10,cnblog博客园的第一天!!!
    终于A了P06614迷宫游戏5,原来是动态规划......点击查看代码#include<bits/stdc++.h>#definedebug(a);cout<<#a<<"="<<a<<endl;#definerep(i,a,b)for(inti=a;i<=b;i++)#definepep(i,a,b)for(inti=a;i>=b;i--)usingnamespacestd;......
  • css样式综合案例----博客园首页简单搭建
    1<!DOCTYPEhtml>2<htmllang="en">3<head>4<metacharset="UTF-8">5<title>博客园</title>6<metaname="viewport"content="width=device-width,initial-scal......
  • 博客园入门
    一、语言:通常博客都是采用markdown语言。1.1markdown语言教程1:https://markdown.com.cn/basic-syntax/教程2:https://forum-zh.obsidian.md/t/topic/435/教程3:https://markdown.com.cn/intro.html1.2Html语言(1)markdown提供了可无缝转换为HTML的轻量级语法。对于......
  • 5.29
    今日总结学习时间2h代码如下packagecom.app.chapter03;importandroid.content.Intent;importandroid.graphics.Color;importandroid.os.Bundle;importandroid.view.View;importandroid.widget.Button;importandroid.widget.TextView;importandroidx.activity.Edg......