首页 > 数据库 >[AHK]用ADOX创建Access数据库

[AHK]用ADOX创建Access数据库

时间:2023-04-24 20:08:14浏览次数:32  
标签:oCatalog AHK Create oTable Access ADOX Columns Append


; Create a database using ADOX  
oCatalog :=   ComObjCreate("ADOX.Catalog")  
oCatalog.Create(sConnectionString)  
oTable :=   ComObjCreate("ADOX.Table")  
oTable.Name :=   "MyTable"  
oTable.Columns.Append("ID", 3)   ; adInteger 3 Indicates a four-byte signed integer (DBTYPE_I4).   
oTable.Columns.Append("Name", 202, 50)   ; adVarWChar 202 Indicates a null-terminated Unicode character string.   
oCatalog.Tables.Append(oTable)  
oTable :=   ""  
oCatalog :=   ""



标签:oCatalog,AHK,Create,oTable,Access,ADOX,Columns,Append
From: https://blog.51cto.com/u_15408625/6221786

相关文章

  • ahk模式窗口
    OwnDialogs:命令Gui+OwnDialogs可以指定窗体上的每个线程(例如ButtonOK子过程)为子窗体,可以使窗体上激活的如MsgBox,InputBox,FileSelectFile,和FileSelectFolder 对话框为当前窗体的子窗体。这些对话框都为模式对话框,也就是说用户必须先关闭这些对话框才能和他们的父窗......
  • [AHK]华泰通达信版 买入 填单
    winTitle:="ahk_classTdxW_MainFrame_Class"b_code_ctr:="Edit8"b_price_ctr:="Edit9"b_num_ctr:="Edit12"code=600050price=5.50num=100ifwinexist%winTitle%{ WinActivate,%winTitle% ControlSetText,%b_code_ctr%,%......
  • RandomAccessFile 讲解与使用
    RandomAccessFile的简介RandomAccessFile可以实现对文件数据的随机读取。RandomAccessFile类包含了一个记录指针,用以标识当前读写处的位置,当程序新创建一个RandomAccessFile对象时,该对象的文件记录指针位于文件头(也就是0处),当读/写了n个字节后,文件记录指针将会向后移动n个字节......
  • 把nginx的access_log以json的格式输出
    #在`nginx.conf`中添加如下配置log_formatjsonescape=json'{"@timestamp":"$time_iso8601",''"server_addr":"$server_addr",''"remote_addr":"......
  • Access restriction: The type BASE64Decoder is not accessible due to restr[转]
    在Eclipse中编写用java代码时用到了BASE64Decoder,importsun.misc.BASE64Decoder;可是Eclipse提示:Accessrestriction:ThetypeBASE64DecoderisnotaccessibleduetorestrictiononrequiredlibraryC:\Programfiles\java\jre6\lib\rt.jarAcces......
  • git执行push操作时报错:remote: xxx: Incorrect username or password (access token)
    问题:最近用gitpush项目到gitee时报错,提示信息如下:remote:xxx:Incorrectusernameorpassword(accesstoken)fatal:Authenticationfailedfor'https://gitee.com/xxx/xxx.git/'想了一下,原来是几天前我把gitee的密码给改了,所以原先git存留的密码就失效了解决方案清......
  • java RandomAccess 遍历效率
     RandomAccess 是判断集合是否支持快速随即访问,以下是个测试用例:JDK中推荐的是对List集合尽量要实现RandomAccess接口如果集合类是RandomAccess的实现,则尽量用for(inti=0;i<size;i++)来遍历而不要用Iterator迭代器来遍历,在效率上要差一些。反过来,如果List是SequenceList......
  • ERROR 1045 (28000): Access denied for user '-root'@'localhost' (using password:
    以下是cmd的操作(重启服务,修改my.ini文章下面有my.ini配置) 当修改密码为123456是sqlyog连接成功修改为root时连接报老错误,又修改为123456在修改为root就连接正常了MicrosoftWindows[版本10.0.18363.1139](c)2019MicrosoftCorporation。保留所有权利。C:\ProgramFiles......
  • access violation at address isflash.dll
    右击“我的电脑”。单击“属性”。 在“系统属性”中单击“高级”。 在“性能”中单击“设置”。 在“性能选项”中单击“数据执行保护”。 单击“添加”。选择要运行的程序。 OK。就这么简单。 ......
  • Access denied for user 'root'@'x.x.x.x' (using password: YES)请求的ip跟报错显示
      这里请求的实际上报这一条错误是说明已经请求到了目标服务器的,mysql中以‘root’@‘x.x.x.x’这种格式表示的ip其实是我们当前的ip而非目标ip,这里报错是因为我密码输错了,所以报了错......