数据库 use master if exists (select * from sysdatabases where name='bond') drop database bond create database bond on PRIMARY ( name='bond_data', FILENAME='F:\asp\理财代销\management\bond.mdf', filegrowth%, size=10MB ) LOG ON ( name='bond_log', FILENAME='F:…
新建项目à新建一个空白解决方案 在Model新建一个实体类 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace factory.Model { public class factorys { //ID INTEGER PRIMARY KEY AUTOINCREMENT…
/*例子 判断规则 http://xxx.xxx/new.php?id=57 and 1=1 正确 http://xxx.xxx/new.php?id=57 and 1=2 错误 http://xxx.xxx/new.php?id=57 and 2-1=1 正确 http://xxx.xxx/new.php?id=57 and 2-1=2 错误 http://xxx.xxx/new.php?id=57 and a=a 正确 http://xxx.xxx/new.php?id=57 and 'a'…