如何将数据添加到我的SQL数据库

如何将数据添加到我的SQL数据库

本文介绍了如何将数据添加到我的SQL数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我真的需要帮助这里我是使用Microsoft Visual Studio 2010的新工作。

所以这是我的问题:



1.如何使用文本框和按钮向我的SQL数据库添加数据

例如,

数据源名称:RightDataSet

表名: infotable

列:ID,姓氏,名字

所以这里的ID是自动增量的,所以我只需要2个文本框和一个名为textbox1,textbox2的表单中的按钮和button1。





2.如果我的问题1解决了,则会出现另一个问题。我想在ID列中将最大值显示到表单中的文本框,使用按钮将其显示在该文本框中。



提前感谢您的答案。我正在制作招生计划



我尝试过:



我尝试搜索代码,但没有一个工作。

I really need help here I am new at this work using Microsoft Visual Studio 2010.
So here are my problems:

1. How can I add data to my SQL database using textboxes and button
For example,
Data source name: RightDataSet
Table name: infotable
Columns: ID, Last Name, First Name
So the ID here is in autoincrement, so I only need 2 textboxes and a button in my form named textbox1, textbox2 and button1.


2. If my problem 1 is solved, another problem occurs. I want to display the maximum value in ID column to a textbox in a form using a button to display it in that textbox.

Thank You For Your Answers In Advance. I am making an enrollment program

What I have tried:

I tried searching for codes but none of them is working.

推荐答案



这篇关于如何将数据添加到我的SQL数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 06:11