Location:
Search - MySqlConnection
Search list
Description: 连接数据库,主要是连接到mysql上。用于检查数据库安装是否合理。-Connect to the database, mainly to connect to mysql on. Used to check the database installation is reasonable.
Platform: |
Size: 366592 |
Author: wangyan |
Hits:
Description: 这个是我做练习自学时学的饿,关于C来连接数据库的。-This is I do exercise when hungry, self-study learn about C to connect to the database.
Platform: |
Size: 1024 |
Author: wangQ |
Hits:
Description: Mysql Connector for c#的二次封装,简化操作-Mysql Connector for c# secondary package simplifies operation
Platform: |
Size: 150528 |
Author: 晓残 |
Hits:
Description: 主要针对mysql数据库的连接,用来作为数据库的工具类,可以方便的拿来使用。-Mainly for mysql database connection is used as the database tools, you can easily take it and use.
Platform: |
Size: 1024 |
Author: 兰兰 |
Hits:
Description: 此段代码实现Eclipse工具连接mysql数据库的操作。-This code realization Eclipse tool to connect mysql database operations.
Platform: |
Size: 1024 |
Author: lucaswangdo |
Hits:
Description: Easy Backup and Restore MySQL utility.-Introduction
It is the basic, easy to use MySQL Backup/Restore utility.
Background
It is basically developed for non programmers. So, anyone can use it. The simplest tool for the job.
Using the code
Backup method takes two arguments, i.e, path to save the backup file and connection string.
Hide Copy Code
// Backup MySql
private void MySQLBackup(string path, string constring)
{
string file path+ txt_database.Text+ _ + DateTime.Now.ToString( yyyy-MM-dd_hh-mm-ss )+ .sql
using (MySqlConnection conn new MySqlConnection(constring))
{
using (MySqlCommand cmd new MySqlCommand())
{
using (MySqlBackup mb new MySqlBackup(cmd))
{
cmd.Connection conn
conn.Open()
mb.ExportToFile(file)
conn.Close()
}
}
}
}
Now to the restore method with the same two arguments
Hide Copy Code
// Restore MySQL(.sql) file to the
private void
Platform: |
Size: 262144 |
Author: xps1530 |
Hits:
Description: 实现了java的数据库连接,由jdbc连接数据库,可以进行增删改查等操作。-database connection
Platform: |
Size: 1024 |
Author: jinyuze |
Hits: