
VB.NET
文章平均质量分 78
knightdev
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Check if a table or field exists in a database
Function to check if a table or field exists in an MS Access or SQL Server database. Introduction These are two functions I wrote in VB.NET using ADO.NET to check and see if a table or a fie转载 2015-04-26 22:15:25 · 692 阅读 · 0 评论 -
Check if a database and tables exist in sql server in a vb .net project
You can query SQL Server to check for the existence of objects. To check for database existence you can use this query: SELECT * FROM master.dbo.sysdatabases WHERE name = 'YourDatabase' To chec转载 2015-04-26 21:51:45 · 712 阅读 · 0 评论 -
vb.net 操作Access数据库帮助类
VB.net 操作Access数据库的一些常用方法,代码如下 Imports System Imports System.Data.SqlClient Imports System.Configuration Imports System.Collections.Generic Imports System.Text Imports System.Data Imports Sys转载 2015-04-24 23:01:56 · 900 阅读 · 0 评论