Giter Site home page Giter Site logo

Comments (7)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 19, 2024
Effectively connection collation was wrong but still LuaDBI should allow 
specifying a connection collation, in the Connection Object.

Original comment by [email protected] on 21 Aug 2013 at 11:00

from luadbi.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 19, 2024
Connection collation and other parameters are handled via SQL commands such as 
'SET NAMES'. This is the standard way to do it.

Original comment by MWild1 on 21 Aug 2013 at 11:19

from luadbi.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 19, 2024
Matthew, yes I know and did test that, but that produces no result the output 
is still garbled.

I did run via LuaDBI:
SET collation_connection = utf8_general_ci;
SET collation_server = utf8_general_ci;
SET NAMES utf8;

but result is still garbled:
| name  �екунд узнаем
| Result: nil

related session variables are _all_ set to use utf8:
| character_set_client  utf8
| character_set_connection  utf8
| character_set_database    utf8
| character_set_filesystem  binary
| character_set_results utf8
| character_set_server  utf8
| character_set_system  utf8
| character_sets_dir    /usr/share/mysql/charsets/
| collation_connection  utf8_general_ci
| collation_database    utf8_general_ci
| collation_server  utf8_general_ci

More then this I have no idea what else is needed to get clean UTF-8 output.

Original comment by [email protected] on 22 Aug 2013 at 2:21

from luadbi.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 19, 2024
How did you create your database,

Normally 

CREATE DATABASE database_name DEFAULT CHARACTER SET utf8 DEFAULT COLLATE 
utf8_general_ci; 

should be enough.

Dont forget to create your tables with this at the end: create table .... 
DEFAULT CHARSET=utf8 

And instead of sending set names sql with every sql query, you can set it in 
your mysql conf only once.

under [mysqld]
add these 2 rows:
character_set_server    = utf8
collation_server        = utf8_general_ci

That's all.
SkyBlue

Original comment by [email protected] on 22 Aug 2013 at 11:35

from luadbi.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 19, 2024
> More then this I have no idea what else is needed to get clean UTF-8 output.

Note that data put into the database with the wrong connection parameters will 
be translated incorrectly by MySQL. So test again with new data, storing and 
retrieving, with the new connection parameters.

Original comment by MWild1 on 22 Aug 2013 at 11:37

from luadbi.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 19, 2024
SkyBlue, I didn't create it but the DB is created with the correct statements 
and has utf8 charset and collation.

MattJ, that's it, perhaps I suppose the data in the db could have been inserted 
with the wrong connection collation.

Original comment by [email protected] on 22 Aug 2013 at 11:57

from luadbi.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 19, 2024

Original comment by MWild1 on 30 Jul 2014 at 10:08

  • Changed state: Invalid

from luadbi.

Related Issues (20)

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.