假設news表中有乙個屬性passed,資料型別是「是/否「
1,讀操作:string str="select * from news where passed=true";(access)讀「是「操作。
string str="select * from news where passed=false";(access)讀「否「操作。
2,寫操作:
string str="delete from news where passed=true";(access)「是「操作。
string str="update news set passed=0 where passed=true";(access)。
string str="insert into news (passed)values(0) ";(access)。
3,使用parameters時注意事項
mycommand.parameters.add("@passed",oledbtype.tinyint).value=1;
access 資料型別
資料型別 儲存量大小 說明binary 每個字元佔 1 個位元組 任何型別的資料都可以儲存在這種型別的字段中。不進行資料轉換 例如,轉換成文字 資料怎樣輸入到二進位製字段就怎樣作為輸出顯示,bit1 個位元組 值為 yes 和 no,並且該欄位只能取這兩個值中的乙個。tinyint 1 個位元組 在...
Access中SQL查詢的資料型別轉換
每個函式都可以強制將乙個表示式轉換成某種特定資料型別。語法 cbool expression cbyte expression ccur expression cdate expression cdbl expression cdec expression cint expression clng ...
Access中的資料型別和字段屬性
資料型別 用途 文字字元 數字或字元與數字的任意組合,不能用於計算。最長255個字元,預設長度為50個字元。對於指定的大小,存放中文漢字與英文本母的個數都是一樣的 備註超長的文字,用於注釋或說明,最長65535個字元 數字用於計算的值,1 2 4或8位元組 日期 時間 表示日期和時間,可用於計算,最...