查询辅助函数 $this->db->insert_id() 这个ID号是执行数据插入时的ID。 $this->db->affected_rows() Displays the number of affected rows, when doing "write\" type queries (insert, update, etc.). 当执行写入操作(insert,update等&…
using System;
using System.Collections.Generic;
using System.Text;
using System.Net; //需要引用.Net命名空间namespace ConsoleApplication1
{class Program{static void Main(string[] args){//获得主机名string HostName Dns.GetHostName();Console.WriteLine("…
//语法:
public static bool IsLeapYear(int year)
//用法举例:
using System;public class IsLeapYear
{public static void Main(){for (int year 1994; year < 2014; year){if (DateTime.IsLeapYear(year)){Console.WriteLine("{0} is a lea…