search
HomeDatabaseMysql TutorialMySQL宣布加入微软Visual Studio工业伙伴计划

MySQL 宣布加入微软 Visual Studio 工业伙伴计划 其中与使用 Visual Studio 公司及程式开发人员最大受益是 MySQL 将推出 MySQL 数据库的 VS 2005 Plug-in 套件 MySQL AB 是世界上最受欢迎的 Open Source 数据库之一,在 2006/6/27 日 MySQL 宣布加入微软 Vis

MySQL宣布加入微软Visual Studio工业伙伴计划

MySQL宣布加入微软Visual Studio工业伙伴计划

其中与使用Visual Studio公司及程式开发人员最大受益是MySQL将推出MySQL数据库的VS 2005 Plug-in套件

 


 

MySQL AB是世界上最受欢迎的Open Source数据库之一,在2006/6/27MySQL宣布加入微软Visual Studio工业伙伴计划,其中零零总总的相关计划在此不详述,因为跟我们小老百姓没有关系,而有一项计划会关系着非常多公司及开发人员的福利,就是MySQL打算推出MySQL数据库的VS 2005 Plug-in套件,让VS 2005Programmer可以拥有像SQL Server一样的数据库总管,可以轻轻松松连结MySQL数据库、建立与管理数据库、开启数据表、新增与修改数据等等,这其实会让MySQL的程式设计师轻松不少,但当然此举对MySQL免费数据库在VS 2005的搭配上又增加了许多使用上的诱因,也就是说又会有更多的公司或Programmer会重新评估使用MySQL数据库,毕竟若MySQL数据库在VS 2005环境中若像SQL 2005一样方便时,自然MySQL使用率会被提升几个百分点(连我都有点心动)。

Visual Web Developer 2005数据库总管

MySQL宣布加入微软Visual Studio工业伙伴计划


MySQL
此举是好事没错,但祭司要说的是MySQL真的是慢了一个世代,SQL 2000是第一个被Visual Studio.NET 2002支援的,再来有Oracle也推出VS.NET 2003Plug-in,让Oracle数据库能够在Visual Studio环境中能够有更高的整合性,甚至做得比VS.NET 2003内建对SQL 2000支援得还棒,可见以数据库为公司立业命脉的Oracle在数据库工具上的确有过人之处,而最近IBM也推出了DB2VS 2005Plug-in套件,让VS 2005也能够存取及管理DB2,到现在几大数据库厂商都有实际的东西推出,MySQL目前才宣布将来打算推出,也就是~连个鬼影都没有,所以祭司也没办法秀出一些间谍照给大家瞧瞧,但相信不久的将来(也许半年后),希望MySQL for VS 2005Plug-in套件能够真正面世,造福广大的MySQL数据库的族群吧!

MySQL Joins Microsoft Visual Studio Industry Partner Program新闻网址:

http://www.mysql.com/news-and-events/press-release/release_2006_29.html

发表于 2006/07/19 09:57 AM

 

 
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What Are the Limitations of Using Views in MySQL?What Are the Limitations of Using Views in MySQL?May 14, 2025 am 12:10 AM

MySQLviewshavelimitations:1)Theydon'tsupportallSQLoperations,restrictingdatamanipulationthroughviewswithjoinsorsubqueries.2)Theycanimpactperformance,especiallywithcomplexqueriesorlargedatasets.3)Viewsdon'tstoredata,potentiallyleadingtooutdatedinforma

Securing Your MySQL Database: Adding Users and Granting PrivilegesSecuring Your MySQL Database: Adding Users and Granting PrivilegesMay 14, 2025 am 12:09 AM

ProperusermanagementinMySQLiscrucialforenhancingsecurityandensuringefficientdatabaseoperation.1)UseCREATEUSERtoaddusers,specifyingconnectionsourcewith@'localhost'or@'%'.2)GrantspecificprivilegeswithGRANT,usingleastprivilegeprincipletominimizerisks.3)

What Factors Influence the Number of Triggers I Can Use in MySQL?What Factors Influence the Number of Triggers I Can Use in MySQL?May 14, 2025 am 12:08 AM

MySQLdoesn'timposeahardlimitontriggers,butpracticalfactorsdeterminetheireffectiveuse:1)Serverconfigurationimpactstriggermanagement;2)Complextriggersincreasesystemload;3)Largertablesslowtriggerperformance;4)Highconcurrencycancausetriggercontention;5)M

MySQL: Is it safe to store BLOB?MySQL: Is it safe to store BLOB?May 14, 2025 am 12:07 AM

Yes,it'ssafetostoreBLOBdatainMySQL,butconsiderthesefactors:1)StorageSpace:BLOBscanconsumesignificantspace,potentiallyincreasingcostsandslowingperformance.2)Performance:LargerrowsizesduetoBLOBsmayslowdownqueries.3)BackupandRecovery:Theseprocessescanbe

MySQL: Adding a user through a PHP web interfaceMySQL: Adding a user through a PHP web interfaceMay 14, 2025 am 12:04 AM

Adding MySQL users through the PHP web interface can use MySQLi extensions. The steps are as follows: 1. Connect to the MySQL database and use the MySQLi extension. 2. Create a user, use the CREATEUSER statement, and use the PASSWORD() function to encrypt the password. 3. Prevent SQL injection and use the mysqli_real_escape_string() function to process user input. 4. Assign permissions to new users and use the GRANT statement.

MySQL: BLOB and other no-sql storage, what are the differences?MySQL: BLOB and other no-sql storage, what are the differences?May 13, 2025 am 12:14 AM

MySQL'sBLOBissuitableforstoringbinarydatawithinarelationaldatabase,whileNoSQLoptionslikeMongoDB,Redis,andCassandraofferflexible,scalablesolutionsforunstructureddata.BLOBissimplerbutcanslowdownperformancewithlargedata;NoSQLprovidesbetterscalabilityand

MySQL Add User: Syntax, Options, and Security Best PracticesMySQL Add User: Syntax, Options, and Security Best PracticesMay 13, 2025 am 12:12 AM

ToaddauserinMySQL,use:CREATEUSER'username'@'host'IDENTIFIEDBY'password';Here'showtodoitsecurely:1)Choosethehostcarefullytocontrolaccess.2)SetresourcelimitswithoptionslikeMAX_QUERIES_PER_HOUR.3)Usestrong,uniquepasswords.4)EnforceSSL/TLSconnectionswith

MySQL: How to avoid String Data Types common mistakes?MySQL: How to avoid String Data Types common mistakes?May 13, 2025 am 12:09 AM

ToavoidcommonmistakeswithstringdatatypesinMySQL,understandstringtypenuances,choosetherighttype,andmanageencodingandcollationsettingseffectively.1)UseCHARforfixed-lengthstrings,VARCHARforvariable-length,andTEXT/BLOBforlargerdata.2)Setcorrectcharacters

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool