We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbc307e commit 8ab111fCopy full SHA for 8ab111f
README.md
@@ -8,13 +8,13 @@ Best used when put in the user's home dir. Example:
8
```
9
cp sqlite-to-mariadb.pl ~
10
chmod +x ~/sqlite-to-mariadb.pl
11
-~/sqlite-to-mariadb.pl MyDBName.sqlite.sql > MyDBName.mariadb.sql
+perl sqlite-to-mariadb.pl MyDBName.sqlite.sql > MyDBName.mariadb.sql
12
13
14
Example scenario:
15
16
sqlite3 YourDBName.sqlitedb .dump > YourDBName.sqlite.sql
17
-~/sqlite-to-mariadb.pl YourDBName.sqlite.sql > YourDBName.mariadb.sql
+perl sqlite-to-mariadb.pl YourDBName.sqlite.sql > YourDBName.mariadb.sql
18
mysql -uUSER -pPASSWORD YourDBName < YourDBName.mariadb.sql
19
20
0 commit comments