sql >> データベース >  >> RDS >> Mysql

Angularによるデータベースアクセス

    1-AngularフレームワークでMySQLデータベースにアクセスすることは可能ですか?

    質問は角度固有ではありませんが、はい、可能です 、MySQL 5.7以降、HTTPを介したMySQLのレコードの挿入、更新、および削除が可能です。このようなもの

    http://127.0.0.1:8080/sql/myhttp/SELECT+name_first,+name_last+FROM+names 
    ``` [refer here][1]
    
    > Hence you can interact with MySQL directly with any HTTP client  with
    > out any middle-ware.
    
     By HTTP Client I mean Curl,Wget or any Http library/API of any language (ajax,request,fetch,axios ... for JavaScript/node) 
    
    2 - Would that be insecure like other JavaScript?
    
    Again not JavaScript specific, But **Yes it's insecure(not recommended)** to directly interact with the database from the client.
      Why?
    You need to handle database security issues like SQL Injection from the client side (angular in this case). It's is very inconvenient to do that.
    
    
      [1]: https://scriptingmysql.wordpress.com/2015/01/15/mysql-5-7-labs-and-the-http-plugin-inserting-updating-and-deleting-records-in-mysql-via-http/
    
    > I do recommend to always have database access middle-ware
    > (php,node,python ...) than interacting from client side
    
    


    1. MySQLテーブルのアドバイスを検索するためのPHPの「スマート」検索エンジン

    2. MYSQLで日付フィールドをフォーマットする方法

    3. MySQL LOADDATAINFILEストアの行番号

    4. Oracle認定