Ⅰ 怎麼把data格式轉化為資料庫格式
1.將選中的數據快兒拷貝到一個txt文本文件中(記得把後面的空格消掉。。否則導入資料庫後會有對應的空行),假如存到「d:\data.txt」這個位置里。
2.根據要導入的數據快兒建立mysql資料庫和表,然後進入命令提示符里使用命令
load
data
local
infile
'd:/data.txt'
into
table
exceltomysql
fields
terminated
by
'\t';
注意:盤符我使用的「/」才成功,否則提示找不到文件
下面文章中是用的「\」!
進行導入操作
手動進行excel數據和mysql數據轉換
Ⅱ 資料庫sql server,在哪裡設置Data Source(數據源)
開始->管理工具->數據源(ODBC)
Ⅲ Asp.net Datalist怎麼顯示資料庫的數Asp.net Datalist怎麼顯示資料庫的數據 求源碼據 求源碼
<div class="STYLE4" >
<asp:DataList ID="dlBooks" runat="server">
<ItemTemplate>
<table>
<tr>
<td rowspan="2"><a
onclick="window.location='BookDetail.aspx?bid=<%# Eval("Id")%>'"><img
style="CURSOR: hand" height="121" alt="<%# Eval("Title") %>"
src="<%# GetUrl(Eval("ISBN").ToString()) %>" width="95" /></a> </td>
<td style="FONT-SIZE: small; COLOR: red" width="650"><a href="BookDetail.aspx?bid=<%# Eval("Id")%>" name="link_prd_name" target="_blank" class="STYLE5" id="link_prd_name" onclick="return s('9317290','01.54.06.06','',this.href)"><%# Eval("Title") %></a></td>
</tr>
<tr>
<td style="FONT-SIZE: small" align="left"><%# Eval("Author") %><br />
<br />
<%# GetCut(Eval("ContentDescription").ToString(),150) %> </td>
</tr>
<tr>
<td style="FONT-SIZE: small;" align="right" colspan="2"><%# Eval("UnitPrice") %></td>
</tr>
</table>
</ItemTemplate>
<SeparatorTemplate>
<hr />
</SeparatorTemplate>
</asp:DataList>
</div>
Ⅳ 你有一個簡單的資料庫的源代碼嗎最好用java實現的...
class ConnectionProvider{
private static String JDBC_DRIVER;
private static String DB_URL;
private static String DB_USER;
private static String DB_PASSWORD;
public ConnectionProvider()
{
JDBC_DRIVER = "com.mysql.jdbc.Driver"
DB_URL = "jdbc:mysql://localhost:3306/u-disk";
DB_USER = "root";
DB_PASSWORD = "root"
};
public Connection getConnection()
{
try {
Class.forName(JDBC_DRIVER);
} catch (Exception e) {
System.out.println("驅動文件路徑有誤!");
}
}
Connection con = null;
try {
con = DriverManager.getConnection(DB_URL, DB_USER,
DB_PASSWORD);
} catch (SQLException e) {
System.out.println("資料庫連接建立異常!\n@shy2850@" + e.getMessage() +
e.getCause());
}
System.out.println("得到連接:Connection " + ConnectionPool.connections.size() + 1);
return new ConnectionImpl(con);
}
}
可以使用這個包裝的資料庫連接數據源在DAO工具類中使用:
package com.jdbc;
import java.sql.*;
/**課題:封裝資料庫的增刪改查的工具類的實現。
*
* 假設相關資料庫的表結構如下:
* 表名:user
* 列名及屬性:id(int 自增),name(varchar(20)),tele(char(12)),birthday(date)
* @author shy2850
*/
public class UserDAO {
Connection conn;
public UserDAO(Connection conn) {
this.conn = conn;
}
public int save(User user) throws SQLException {
String sql = "insert into user values(0,?,?,?)";
PreparedStatement pstmt = conn.prepareStatement(sql);
pstmt.setString(1, user.getName());
pstmt.setString(2, user.getTele());
pstmt.setDate(3, user.getBirthday());
int n = pstmt.executeUpdate();
pstmt.close();
return n;
}
public int delete(User user) throws SQLException{
String sql = "delete from user where id = "+user.getId();
Statement stmt = conn.createStatement();
int n = stmt.executeUpdate(sql);
stmt.close();
return n;
}
public int update(User user) throws SQLException{
String sql = "update user set name=?, tele=?, birthday=? where id = "+user.getId();
PreparedStatement pstmt = conn.prepareStatement(sql);
pstmt.setString(2, user.getName());
pstmt.setString(3, user.getTele());
pstmt.setDate(4, user.getBirthday());
int n = pstmt.executeUpdate(sql);
pstmt.close();
return n;
}
public User getUser(Integer id) throws SQLException{
String sql = "select * from user where id = " + id;
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery(sql);
User user = getUserFromResultSet(rs);
rs.close();
stmt.close();
return user;
}
static User getUserFromResultSet(ResultSet rs) throws SQLException{
Integer id = rs.getInt("id");
String name= rs.getString("name");
String tele= rs.getString("tele");
Date birthday = rs.getDate("birthday");
return new User(id, name, tele, birthday);
}
}
/**
* 構建資料庫表的java類映射
*/
class User{
private Integer id;
private String name;
private String tele;
private Date birthday;
public User() {
}
public User(Integer id, String name, String tele, Date birthday) {
super();
this.id = id;
this.name = name;
this.tele = tele;
this.birthday = birthday;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getTele() {
return tele;
}
public void setTele(String tele) {
this.tele = tele;
}
public Date getBirthday() {
return birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
}
Ⅳ php 怎麼顯示資料庫中的數據 求源代碼
讀資料庫,以表格輸出的示例代碼:
<?php
header('Content-type:text/html;charset=utf-8');
$db = new mysqli('localhost','root','root','books');
$rows = $db->query('SELECT * FROM customers');
echo '<table border="1"><tr><td>姓名</td><td>年齡</td></tr>';
while($row = $rows->fetch_assoc()){
echo '<tr><td>'.$row['name'].'</td>';
echo '<td>'.$row['address'].'</td></tr>';
}
?
Ⅵ 怎麼從資料庫讀取數據到ASP.NET里顯示出選擇題的樣式,有源代碼最好!如:圖的效果
1、先查詢Qid=0的題目放到dataTable1
2、再查詢Qid<>0的答案選項放到dataTable2
3、再循環題目dataTable1,輸出題目
4、最後根據題目Qid在答案選項dataTable2中過濾找出該題目的答案選項,輸出選項
具體顯示格式,如是否換行,radio,一行幾個選項等,就看你的要求寫邏輯控制了。
不大可能有源代碼,只能你自己根據以上思路實現。祝你愉快!
Ⅶ 做一個簡單的應用data控制項可對資料庫進行添加,刪除,查詢操作的系統,給發個演示程序加代碼
Dim
num,name,nativ,sql
As
String
dim
cn
as
new
adodb.connection
num=text1.text
name=text2.text
nativ=text3.text
(分別對應三個文本控制項)
sql
=
"insert
into
stu(學號,姓名,籍貫)
values
('"
&
num
&
"','"
&
name
&
"','"
&
nativ
&
"')"
Dim
cn_str
As
String
cn_str
=
"Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=數據.mdb;Persist
Security
Info=False"
If
cn.State
=
1
Then
cn.Close
cn.Open
cn_str
cn.CursorLocation
=
adUseClient
cn.Execute
sql
Ⅷ .data的文件是什麼資料庫文件
data文件是資料庫系統運行是產生的文件,對用戶沒什麼意義
sql server的文件後綴只有3種:.mdf .ndf .ldf .bak
分別為主數據文件,次數據文件,日誌文件,備份文件
Ⅸ Asp.net Datalist怎麼顯示資料庫的數據 求源碼
在.aspx設計-- datalist --">"--- 編輯模板,在模板裡面添加DIV 、table、和你想要顯示數據的控制項如label。 然後綁定label的text :<%# Eval("Entry")%> ,"Entry" 是你從資料庫中讀出來的欄位名。然後去.aspx.cs 寫數據源綁定事件,將listbind()放到pageload()里 就可以載入的時候顯示了。
private void listbind()
{
datalist1.DataSource = dt2; //dt2是你的數據源 可以是datatable或者dataset
datalist1.DataBind();
}
Ⅹ 求js讀取資料庫數據顯示在頁面上的表中的功能源碼
js 可以讀資料庫 // JavaScript Document
var ServerIP="127.0.0.1";var conn,framePath,Style;
function kin_conn(){
var datasource="資料庫地址";
var filePath= window.location.href;
framePath=filePath.split("/frame")[0];
filePath=filePath.substring(8); //去掉file:///
filePath=filePath.split("/frame")[0];
datasource=filePath+"/db/"+datasource; try {
conn = new ActiveXObject("ADODB.Connection");
conn.Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+datasource);
} catch (errer) {
alert(errer.description);
}
return true
}function conn_close(conn){
conn.close;
conn=null;
}function rs_close(rs){
rs.close;
rs=null;
}var request=req()
function req(){
var ocar=new Object;
ocar.mark="讀取地址欄地址";
ocar.querystring=function showcolor(ret){
var s = window.location.search.substr(1);
var aryVars = s.split('&');
for(var i=0;i<aryVars.length;i++)
{
var aryPair = aryVars[i].split("=");
if (aryPair[0]==ret){return aryPair[1];i=aryVars+1;}
}
}
return ocar;
} var S=request.querystring("S");
if (S==null){window.location.href="../index.html";}
kin_conn();
//連接資料庫
var sc = new ActiveXObject("ADODB.Recordset");
var sql="select * from [News_smallclass] where [smallclassID]="+S;
sc.open(sql, conn, 1,1 );
if (sc.recordcount<1) {alert("地址錯誤");window.location.href="../index.html";}
var newsid=""+sc("id")+""; //以前用網站轉CD時作的一個東東.核心部分就是這個,需要的話我可以把我作的東西發給你.不過沒有作完 hehe