数据库操作
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
158 B

3 years ago
  1. package dbquery
  2. import (
  3. "testing"
  4. )
  5. func Test_GetTotal(t *testing.T) {
  6. Connect()
  7. total := GetTotal("dev_tetel_net", TABLE_CONFIG, "id")
  8. t.Log(total)
  9. }