Questions tagged [mariasql]

A node.js binding to MariaDB's non-blocking (MySQL-compatible) client library

mariasql is a node.js binding to the non-blocking client library provided with MariaDB. It is compatible with MySQL.

This binding is different from other libmysqlclient bindings in that it uses the non-blocking functions available in MariaDB's client library.

Install it with the npm package installer:

npm install mariasql

The source code is located at github:node-mariasql.

References

143 questions
-1
votes
1 answer

"select cast(UUID() as VARBINARY(100))" MySQL query error

Error: Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'VARBINARY(10))' at line 1
junaib
  • 21
  • 2
  • 10
-1
votes
3 answers

Time Issue while I am Using Yii Frame work & maria db on Linux Ubuntu 18.04

enter image description herei just try to do signup form in Yii framework with MariaDB on Linux Ubuntu when i try to create user i got this Message :: enter code here SQLSTATE[22007]: Invalid datetime format: 1292 Incorrect datetime value:…
-1
votes
1 answer

how to install mariasql with nodejs 4.x on ubuntu 14?

I'm trying to set server with node.js and mariaDB on Ubuntu at EC2 of AWS. here is the versions what I installed.. Ubuntu 14.04.3 LTS MariaDB 10.1.14 NodeJS 4.4.7 now I want to connect with node.js and mariaDB, so I tried to install mariasql with…
homerunsb
  • 13
  • 3
-1
votes
1 answer

MariaDB convert column type varchar to int

Column has longitude values of form (+ or -) 36:12:20:0654. I want to change them to (+ or -) 36.12200654. How do I do that? I tried this command: alter table_name alter column column_name int; but it changes the value to 36 with no sign.
Santosh
  • 17
  • 6
-2
votes
1 answer

Getting wrong results on mysql queries

I made a database for an e-commerce mockup. Every looks fine so far, but when I do some Queries I get wrong results I did a sqlfiddle for this so you can look into it When I do SELECT produkt_name, shipping_date FROM product, shipping WHERE…
mastapetz
  • 19
  • 5
-2
votes
2 answers

Mariadb server constanlty crashing [Error 2013]

I know this problem was asked several times, but no solution worked for me so far. I am struggling with this for over 2 weeks and I am out of options. System:Ubuntu 18.04 LTS MySQL version:mysql Ver 15.1 Distrib 10.4.11-MariaDB, for…
Sebastian
  • 448
  • 4
  • 14
-2
votes
1 answer

How to resolve SQL syntax error; check the manual that corresponds MariaDB server for right version?

I am developing a CRUD in that whenever i am trying to upgrade items it show me "You have an error in your Sql syntax; check the manual that corresponds MariaDB server for right for right syntax to use near 'Name = as', Last Name = 's' WHERE ID =…
-3
votes
1 answer

Access denied for user 'root'@'localhost' but works locally

I'm trying to deploy my cakephp project on my virtual machine. When I type mysql -u root -p on my VM it works but cakephp seems to not have access to this. Here is how my DB config looks like: 'Datasources' => [ 'default' => [ …
Kathryn Schutte
  • 95
  • 1
  • 1
  • 6
1 2 3
9
10