Giter Club home page Giter Club logo

db-mysqldump's People

db-mysqldump's Issues

Field Default Values aren't importable as they are

I changed the code a bit, so it dumps to file-system instead of browser
(please see attached file for reference).

But as the classes' output looks like, it just can't be re-imported.

Instead of the regular default values there's YES/NO displayed
(as the DESCRIBE command shows for column DEFAULT).

Original issue reported on code.google.com by [email protected] on 17 Aug 2010 at 12:56

Attachments:

escaping

The output strings are not being escaped properly. Two changes are recommended:

1) Turn on utf8 (most databases use this encoding nowadays). Add this to the 
end of MySQLDump->connect()

    mysql_set_charset('utf8');

2) Change what will no be line 49 in MySQLDump->list_values() from this:

    if (!is_integer($vrednost)) { $vrednost = "'".addslashes($vrednost)."'"; } 

to this:

    if (!is_integer($vrednost)) { $vrednost = "'".mysql_real_escape_string($vrednost)."'"; } 


Original issue reported on code.google.com by [email protected] on 5 Nov 2012 at 4:48

Project needs dynamic post script.

Advantages of this addition?
1. Allows for changing which db is dumped.
2. Does not store any passwords.
3. Normal users cannot do the dump as they don't know the password.

What is the general design idea?
The primary design will have a field for each of the standard option types:
    Host.
    Database.
    User name.
    Password.

Original issue reported on code.google.com by [email protected] on 30 Oct 2009 at 6:20

Large Databases Can Produce Long HTML Pages

What steps will reproduce the problem?
1. Run the script on a database of 1MB or Higher.

What is the expected output? What do you see instead?
Most users would expect a clean .sql or .sql.gz file output. This method
needs to be released as noted in Issue #1.

Please use labels and text to provide additional information.


Original issue reported on code.google.com by [email protected] on 30 Oct 2009 at 11:24

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.