Erlang mysql example

后端 未结 3 1787
隐瞒了意图╮
隐瞒了意图╮ 2021-02-06 13:34

Just wondering if anyone could give a working example of using the erlang-mysql module (http://code.google.com/p/erlang-mysql-driver/).

I am new to erlang and I am tryin

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-06 13:58

    This is described in the source code of mysql.erl:

    Your result will be {data, MySQLRes}.

    FieldInfo = mysql:get_result_field_info(MysqlRes), where FieldInfo is a list of {Table, Field, Length, Name} tuples.

    AllRows = mysql:get_result_rows(MysqlRes), where AllRows is a list of lists, each representing a row.

提交回复
热议问题