資料庫連接sql語句
❶ 資料庫連接語句
樓主應該將相對路徑轉換成絕對路徑也就是將db="mdb/333.mdb"
改成db=Server.MapPath("mdb/333.mdb") 資料庫連接參考資料http://www.connlist.com/access/
❷ SQL資料庫連接語句
<%
Set conn = Server.CreateObject("ADODB.Connection")
strsql="PROVIDER=SQLOLEDB;DATA SOURCE=(local);UID=用戶名;PWD=密碼;DATABASE=資料庫名"
conn.Open strsql
%>
❸ 怎麼連接MYSQL資料庫和執行SQL語句
首先創建連接
就創建個Cnnection對象,然後把驅動加上,還有帳號密碼什麼的!我沒連過sql資料庫,不知道驅動,你可以在網上搜一下。
給你一個我連接mysql資料庫的例子
public Connection Getdata(){//這是連接資料庫的一個方法,還可以配置連接池。
Connection con=null;
try {
Class.forName("com.mysql.jdbc.Driver");//加驅動
con=DriverManager.getConnection("jdbc:mysql://localhost:3306/data","root","qq");//資料庫路徑、埠、庫名、資料庫用戶名和密碼
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
return con;
}
public void delete(int id){//對資料庫進行操作的方法,先調用上面寫好的連接!
Connection con=Getdata();
Statement st;
try {
st=con.createStatement();
st.executeUpdate("delete from kaoshi where id="+id);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
❹ 有關於連接資料庫SQL語句的問題
不知道你使用的是什麼資料庫,但是資料庫欄位命名最好不要使用破折號"-",一般都使用下劃線"_",這是比較通用的。
你可以換一下這個符號再試一下。
或者你將欄位名使用"`"或者"『"括起來使用,這個要根據你的資料庫確定了:
String
sql="select
*
from
doctor
where
`doctor-name`=?
and
`doctor-password`=?"
❺ sql連接資料庫語句
.代表你連接的資料庫所是在本機上的,也可以寫成127.0.0.1\\sqlexpress
如果你寫成別的代表你所連版接的資料庫權在別的電腦上,即遠程連接
例如:server=某一電腦的 ip(這個時候就只要寫server=ip,也可以寫成server=ip\\sqlexpress)
希望對你有所幫助
❻ 跨資料庫連表查詢sql語句怎麼寫
工具/材料:Management Studio。
1、首先在桌面上,點擊「Management Studio」圖標。
❼ C#中如何連接資料庫並執行SQL語句
usingSystem.Data.SqlClient;
SqlConnectionconn=newSqlConnection();
stringconnectionString="server=.;database=Sql;uid=sa;pwd=123456";
conn.ConnectionString=connectionString;
conn.open();
stringsqlStr="SELECT*FROMtable1";
SqlCommandcmd=newSqlCommand();
cmd.Connection=conn;
cmd.CommandText=sqlStr;
cmd.CommandType=CommandType.Text;
inti=Convert.ToInt32(cmd.ExecuteNonQuery());
Console.Write("共有"+i.ToString()+"條數據");
conn.Close();
❽ 如何連接sql資料庫即連接資料庫命令是什麼
public SqlConnection getConn()
{
try
{
string a = AppDomain.CurrentDomain.BaseDirectory.ToString();
string s = a.Substring(0, a.Length - 1);
StreamReader sr = new StreamReader(s + "\\server.txt ", Encoding.GetEncoding("GB2312"));
string ip = sr.ReadLine().Trim();
string database = sr.ReadLine().Trim();
string sa = sr.ReadLine().Trim();
string pwd = sr.ReadLine().Trim();
// conStr = "Data Source = " + ip + ";Initial Catalog = '" + s + "'; Persist Security Info = false; User ID = sa; Password = ";
string conStr;
conStr = "Data Source = " + ip + ";Initial Catalog = " + database + "; Persist Security Info = false; User ID = "+sa +"; Password ="+pwd +" ";
conn = new SqlConnection(conStr);
conn.Open();
}
catch (Exception es)
{ } return conn;
}
❾ 資料庫SQL語句~四表連接
1、如圖所示抄,打開襲了SQL Server 2008,並創建好了資料庫。然後看當前是否是在自己要創建表的資料庫中。
❿ my sql資料庫連接語句。。。
你准備怎麼連?不同語言都不一樣。。。