原创 csharp:Dapper Sample

You can find Dapper on Google Code here: http://code.google.com/p/dapper-dot-net/ and the GitHub distro here: https://

原创 csharp:datagridview enter Half Width and Full Width characters

/// <summary> /// 全角 /// </summary> /// <param name="unicodeString"></param> /// <returns

原创 sql: MySQL and Microsoft SQL Server Stored Procedures IN, OUT using csharp code

MySQL存儲過程: #插入一條返回值 DELIMITER $$ DROP PROCEDURE IF EXISTS `geovindu`.`proc_Insert_BookKindOut` $$ CREATE PROCEDURE `geo

原创 sql:Mysql create view,function,procedure

use test; create database Liber; use Liber; #顯示數據庫 20150210 Geovin Du 塗聚文 SHOW DATABASES; drop table BookKindList;

原创 csharp: Export DataSet into Excel and import all the Excel sheets to DataSet

/// <summary> /// Export DataSet into Excel /// </summary> /// <param name="sender"></param>

原创 sql: Oracle 11g create procedure

CREATE OR REPLACE PROCEDURE proc_Insert_BookKindList ( temTypeName nvarchar2, temParent int ) AS ncount number; begin

原创 Getting SQLite metadata with csharp

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing

原创 sql:MySql create FUNCTION,VIEW,PROCEDURE

use geovindu; #函數 DELIMITER $$ drop function if exists f_GetDepartmentName $$ CREATE function f_GetDepartmentName (

原创 sql: Oracle 11g create table, function,trigger, sequence

--書藉位置Place目錄 drop table BookPlaceList; create table BookPlaceList ( BookPlaceID INT PRIMARY KEY, --NUMBER Book

原创 csharp: Data binding in WPF DataGrid control

<Window x:Class="WpfProjectDemo.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

原创 csharp:SQLite and Access using C# code read data

SQLite sql script: CREATE TABLE BookKindList ( BookKindID INTEGER PRIMARY KEY AUTOINCREMENT, BookKindName varch

原创 csharp:A Custom CheckedListBox with Datasource

from A Custom CheckedListBox with Datasource  http://www.codeproject.com/Articles/22960/A-Custom-CheckedListBox-with-D

原创 sql: postgreSQL sql script

--pg_catalog SELECT * from pg_class c,pg_attribute a,pg_type t where c.relname='BookKindList' and a.attnum>0 and a.attr

原创 csharp: Oracle Metadata queries

數據類型表: TypeName ProviderDbType ColumnSize CreateFormat CreateParameters DataType BFILE 1 4294967296 BFILE

原创 MySql:局域網和權限用戶管理

MySql 5.6(XP)/5.7(win7) 添加用戶和設置局域訪問權限操作.請在 http://sourceforge.net/  下載MySql Control Center(不是安裝版本). use mysql; sel