原文:c#中的odbc、oledb連線
usingsystem;
using
system.collections.generic;
using
system.text;
using
system.data.odbc;
using
system.data.oledb;
namespace
odbctest
;server=127.0.0.1;uid=sa;pwd=abc123123;database=booking"))
", reader.fieldcount);
console.writeline(
"**********====資料內容**********=");
while
(reader.read())
\ttitle:
", reader.getint32(0).tostring(), reader.getstring(1
)); }}}
console.writeline(
"################################odbc連線2###############################");
string constring = "
dsn=ggyy1;
" + "
uid=sa;
" + "
pwd=abc123123;
";//
dsn表示在odbc建立的使用者資料來源名
odbcconnection con = new
odbcconnection(constring);
string sql = "
select * from test
"; //
stuinfo為使用者資料來源繫結的資料庫中的乙個表
con.open();
odbccommand com = new
odbccommand(sql, con);
using (odbcdatareader reader =com.executereader())
", reader.fieldcount);
console.writeline(
"**********====資料內容**********=");
while
(reader.read())
\ttitle:
", reader.getint32(0).tostring(), reader.getstring(1
)); }
}console.writeline();
console.writeline(
"##################################oledb連線#############################");
string constring1 = @"
provider=microsoft.jet.oledb.4.0;data source=d:\test.mdb
"; //
連線access資料庫
string sql1 = "
select count(*) from test";
oledbconnection con1 = new
oledbconnection(constring1);
con1.open();
oledbcommand com1 = new
oledbcommand(sql1, con1);
int i =convert.toint32(com1.executescalar());
console.writeline(i);
console.read();}}
}
c 中連線到access的函式
在檔案頭需要新增下面這段 import c program files common files system ado msado15.dll no namespace rename eof adoeof bool linkaccess int num bstr t strconn provider...
sql中的連線
一般基於 ansi 標準的 sql 列出了五種 join 方式 內連線 inner join 全外連線 full outer join full join 左外連線 left outer join left join 右外連線 right outer join right join 交叉連線 cro...
MySQL中的連線
所謂自連線,就是乙個表和其自己連線,其中要點就是起別名。我們要對student表做自身連線 selectfirst.屬性,second.屬性fromstudent first,student secondwhere 條件 談到外連線,就要先提到資料庫的笛卡爾積x y稱為取xy得笛卡爾積,其實和符號一...