登录
首页 » c++ » AppWizard has created this classification application for you.

AppWizard has created this classification application for you.

于 2022-01-25 发布 文件大小:14.81 kB
0 133
下载积分: 2 下载次数: 1

代码说明:

AppWizard has created this classification application for you.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • SDModule_V1.0
    说明:  32标准库文件,不用再去麻烦的自己拼凑模块(32 Standard Library Documents)
    2020-06-18 12:00:02下载
    积分:1
  • spi
    TMS320F2812 SPI 通讯 运行正常(TMS320F2812 SPI )
    2013-06-16 12:08:57下载
    积分:1
  • SQLHelper连接数据库示例类
    [实例简介] 连接sql数据库 类 [核心代码]using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Configuration;using System.Data.SqlClient;using System.Data; namespace Itcast.Cn{ public static class SqlHelper { private static readonly string conStr = ConfigurationManager.ConnectionStrings["connStr"].ConnectionString; //执行增删改的 public static int ExecuteNonQuery(string sql, CommandType cmdType, params SqlParameter[] pms) { using (SqlConnection con = new SqlConnection(conStr)) { using (SqlCommand cmd = new SqlCommand(sql, con)) { cmd.CommandType = cmdType; if (pms != null) { cmd.Parameters.AddRange(pms); } con.Open(); return cmd.ExecuteNonQuery(); } } } //封装一个执行返回单个值的方法 public static object ExecuteScalar(string sql, CommandType cmdType, params SqlParameter[] pms) { using (SqlConnection con = new SqlConnection(conStr)) { using (SqlCommand cmd = new SqlCommand(sql, con)) { cmd.CommandType = cmdType; if (pms != null) { cmd.Parameters.AddRange(pms); } con.Open(); return cmd.ExecuteScalar(); } } } //返回SqlDataReader对象的方法 public static SqlDataReader ExecuteReader(string sql, CommandType cmdType, params SqlParameter[] pms) { SqlConnection con = new SqlConnection(conStr); using (SqlCommand cmd = new SqlCommand(sql, con)) { cmd.CommandType = cmdType; if (pms != null) { cmd.Parameters.AddRange(pms); } try { con.Open(); return cmd.ExecuteReader(CommandBehavior.CloseConnection); } catch (Exception) { con.Close(); con.Dispose(); throw; } } } //封装一个返回DataTable的方法 public static DataTable ExecuteDataTable(string sql, CommandType cmdType, params SqlParameter[] pms) { DataTable dt = new DataTable(); using (SqlDataAdapter adapter = new SqlDataAdapter(sql, conStr)) { adapter.SelectCommand.CommandType = cmdType; if (pms != null) { adapter.SelectCommand.Parameters.AddRange(pms); } adapter.Fill(dt); } return dt; } //封装一个带事务的执行Sql语句的方法 public static void ExecuteNonQueryTran(List list) { using (SqlConnection con = new SqlConnection(conStr)) { using (SqlCommand cmd = con.CreateCommand()) { con.Open(); using (SqlTransaction trans = con.BeginTransaction()) { cmd.Transaction = trans; try { foreach (var SqlObject in list) { cmd.CommandText = SqlObject.Sql; if (SqlObject.Parameters != null) { cmd.Parameters.AddRange(SqlObject.Parameters); } cmd.CommandType = SqlObject.CmdType; cmd.ExecuteNonQuery(); cmd.Parameters.Clear(); } trans.Commit(); } catch (Exception) { trans.Rollback(); } } } } } } public class SqlAndParameter { public string Sql { get; set; } public SqlParameter[] Parameters { get; set; } public CommandType CmdType { get; set; } }}
    2015-04-01下载
    积分:1
  • tolua-master (1)
    game ai ,lua scripts for unity develop! ulua framework!
    2018-03-24 12:58:49下载
    积分:1
  • pwdGenerator
    Password Generator generates 8 to 16 characters random password including upper&lower case letters and numbers, no special characters.
    2015-02-21 02:23:40下载
    积分:1
  • 0721689
    影像匹配的源代码 Image matching source code()
    2018-02-16 18:10:39下载
    积分:1
  • 06990969PLFchengxumatlab
    说明:  用牛顿-拉夫逊法进行电力系统潮流分布计算(Calculation of Power Flow Distribution in Power System by Newton-Raphson Method)
    2019-04-10 18:28:12下载
    积分:1
  • softhy
    某美食漂亮购物网站商城(花钱买的二次开发绝对完整)仅供学习使用,禁止用于商业用途!(Beautiful shopping mall site of a food (to pay for the secondary development of absolute integrity) for educational purposes only, is prohibited for commercial purposes!)
    2020-09-27 16:17:45下载
    积分:1
  • openplant取数小程序
           private void getHistoryDataSample_Click(object sender, EventArgs e)        {            if (!OPconnect())            {                return;            }            richShowData.AppendText("(取历史采样)请求ID: " + b_pointID.Text.ToString() + " ");            //创建一个空请求            int[] vec = { Convert.ToInt32(b_pointID.Text.ToString()) };            OPAPI3.OPTime end_time = new OPAPI3.OPTime();            OPAPI3.OPTime start_time = new OPAPI3.OPTime();            OPAPI3.OPTime interval_time = new OPAPI3.OPTime();         &n
    2022-01-26 06:18:17下载
    积分:1
  • BlueTooth-tutorial
    《蓝牙4.0实战演练》,C2540蓝牙芯片免费高清教程书籍(Bluetooth 4.0 practical exercise, C2540 Bluetooth chip free HD tutorial books)
    2013-10-20 08:59:21下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载