Connection conn=DriverManager.getConnection(url, user, password);PreparedStatement ps=null; ps=conn.prepareStatement("select name from myuser where id=?");//这种方式更佳ps.setString(1,"1");//设置第几个问号为什么ResultSet re=ps.executeQuery();//执行sql语句while(re.next()){//next函数String s=re.getString(1);System.out.println(s);//得到特定字段对应的值}
C#基础知识
同一命名空间下的两个类
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace HelloWorld
{class A{private int a;public A(int x) { a x; }public void show() { Console.WriteL…