原创 csharp: Procedure with DAO and DAL

sql script code: CREATE TABLE DuCardType ( CardTypeId INT IDENTITY(1,1) PRIMARY KEY, CardTypeName NVARCHAR(100) NOT N

原创 csharp: Oracle Stored Procedure DAL using ODP.NET

Oracel sql: --書分類目錄kind -- Geovin Du create table BookKindList ( BookKindID INT PRIMARY KEY, BookKindName nvarcha

原创 javascript: detect mobile devices or browser

 http://detectmobilebrowsers.com/ http://hgoebl.github.io/mobile-detect.js/ http://www.hand-interactive.com/resources

原创 MySQL Stored Procedure Prepared Statement (Dynamic SQL) Parameterized

類似於SQL Server中的:sp_executesql sql server script: --- 塗聚文 20160906 IF EXISTS (SELECT * FROM sysobjects WHERE [name] = 'p

原创 FullCalendar – jQuery Event Calendar in ASP.NET

https://github.com/esausilva/ASP.Net-EventCalendar http://trentrichardson.com/examples/timepicker/ https://github.com/p

原创 Csharp: read excel file using Open XML SDK 2.5

/// <summary> /// /// </summary> public class SheetNameInfo { private int _sheetId; p

原创 Fluent Nhibernate and Stored Procedures

DROP TABLE Department GO CREATE TABLE Department ( Id INT IDENTITY(1,1) PRIMARY KEY, DepName VARCHAR(50), PhoneNumb

原创 PHP7.27: connect mysql 5.7 using new mysqli_connect

<!doctype html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta charset="u

原创 csharp: Export or Import excel using MyXls

 excel 2003 (效果不太理想) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data;

原创 csharp: MySQL Stored Procedure using DAL

# 建表 塗聚文 20160907 drop table attendrecord; create table attendrecord ( seq INT NOT NULL PRIMARY KEY AUTO_INCREMEN

原创 csharp: DataRelation objects to represent a parent/child/Level relationship

/// <summary> /// /// </summary> /// <param name="sender"></param> /// <param name="e"></pa

原创 javascript: Jquery each loop with json array or object

json: { "justIn": [ { "textId": "123", "text": "Hello,geovindu", "textType": "Greeting" }, { "textId": "514", "text":"W

原创 csharp: Export or Import excel using NPOI

 excel 2003: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using Sy

原创 C++: DataGridView::DataSource

#pragma once #include "Form2.h" namespace cdemo { using namespace System; using namespace System::ComponentModel;

原创 sql: table,view,function, procedure created MS_Description in sql server

--添加描述 Geovin Du --https://msdn.microsoft.com/en-us/library/ms180047.aspx --https://msdn.microsoft.com/zh-cn/library/ms