Access VBA (不断更新中...)
1、问题描述:用VBA把数据从Excel导入到Access(系统版本号:Microsoft Windows XP Professional 版本 2002 Service Pack 3;Office Access版本号:2002/XP)。
代码描述:Insert Into [表名]([字段1],[字段2]) " & _
"Select [列标题1],[列标题2]" & _
"from [Excel 9.0;Database=" & 文件路径和文件名称 & "].[Excel页名$]"
补充说明:可把“[列标题1]”改为一个变量 如:’“ & temp & ”‘
如果“[列标题1]”是英文(有空格)可用“[]” 如 [is ok]
如果“Excel页名”是英文(有空格)可用“[]” 如 [Excal name]
Excel列标题不能有“.”,不能有回车
错误提示:运行时错误 ‘3171’
找不到可安装的ISAM
解决方法:"from [Excel 9.0;Database=" & 文件路径和文件名称 & "].[Excel页名$]"这段代码,Excel版本号(对应Office 2002/XP)只能是8.
相关文档:
Data Source=sqlservername;Initial Catalog=dbname;User ID=userid;Password=userpwd
Data Source=(local)\\SQLEXPRESS;Initial Catalog=数据库名;Integrated Security=True
Data Source=(local);Initial Catalog=数据库名;User ID=帐号;Password=帐号密码
Provider=Microsoft.Jet.OleDb.4.0;Data Source=C:\BegASPNET\ ......
所谓“存取键”就像 windows 应用程序中的 Alt 快捷键,同时按 Alt 键和某个字母键,可以快速切换到文本框、按钮等页面对象上。
(1)、文本框的 Access Key:
<FORM>
<LABEL FOR="Namebox" ACCESSKEY="N"><U>N</U>ame:</LABEL>
<INPUT TYPE="TEXT" ID="Namebox" SIZE=30> ......
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using Microsoft.Practices.EnterpriseLibrary.Common;
us ......
列出某一天, 上一星期的数据
SELECT distinct dateandtime
from ctdate_by_query_date
WHERE dateandtime between ((#2006-5-15#+(Weekday(2006-5-15)-7))-6) and (#2006-5-15#-7)+Weekday(2006-5-15)
sql="SELECT distinct dateandtime from ctarticle WHERE dateandtime between ((#"&date&"#+(We ......
<?php
/*
* Created on 2008-10-25
*
* developer by Alex.do QQ:20779512
* PHP 5.0
*/
class mdbClass {
var $dbPath = 'database/#123123#.mdb'; //数据库路径
var $tabName; & ......