我只是想知道我们是否可以从database
创建MySQL
.db文件。如果是这样,如何创建.db文件?我已经知道,.db文件可以从SQLite
创建,然后这个.db文件可以由Qt
应用程序编辑。
如果我们可以从database
创建.db MySQL
,我们是否可以加载并进一步编辑或添加Qt
应用程序中的数据?
答案 0 :(得分:2)
MySQL需要数十个文件来表示数据库,还需要一个服务器进程来与这些文件进行交互。它没有可以创建的“/*
Necessary imports...notice I imported the two components we will use( Login and Home)
*/
import Vue from 'vue'
import Router from 'vue-router'
import Login from '@/components/Login'
import Home from '@/components/Home'
import Landing from '@/components/Landing'
// Needed to make use of the vue-router system
Vue.use(Router)
export default new Router({
// Define the routes...will add more when they are needed
routes: [
{
path: '/home', // this is the path in the URL
name: 'Home',
component: Home // created component
},
{
path: '/login', // this is the path in the URL
name: 'Login',
component: Login // created component
},
{
path: '/', // this is the path in the URL
name: 'Landing',
component: Landing // created component
}
]
})
文件”。您可以做的最好的是MySQL方言中的.db
转储,但如果没有MySQL服务器将其恢复到原来这几乎没用。
SQLite被设计为轻量级库,可以与单独的自包含文件进行交互。它是出于您描述的目的而明确制作的。
如果你想从SQLite转换为可能的MySQL,但它并不总是琐碎。