• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Pawn] Help with sqlite floats
#3
(2021-04-11, 01:52 PM)DandoRYx Wrote: How about changing %d to %f ?

Code:
HEALTH = '%d', ARMOUR = '%d', X = '%d', Y = '%d', Z = '%d'

?

HEALTH = '%f', ARMOUR = '%f', X = '%f', Y = '%f', Z = '%f'



and same in here:

Code:
format(Query, sizeof(Query), "INSERT INTO `USERS` (`NAME`, `PASSWORD`, `IP`, `TEAM`, `SKIN`, `MONEY`, `SCORE`, `HEALTH`, `ARMOUR`, `X`, `Y`, `Z`) VALUES('%s','%s','%s', '0', '0', '0', '0', '%d', '%d', '%d', '%d', '%d')", DB_Escape(name), DB_Escape(inputtext), DB_Escape(ip));

?

format(Query, sizeof(Query), "INSERT INTO `USERS` (`NAME`, `PASSWORD`, `IP`, `TEAM`, `SKIN`, `MONEY`, `SCORE`, `HEALTH`, `ARMOUR`, `X`, `Y`, `Z`) VALUES('%s','%s','%s', '0', '0', '0', '0', '%f', '%f', '%f', '%f', '%f')", DB_Escape(name), DB_Escape(inputtext), DB_Escape(ip));



I think I tried that, will try again when I will get home, thanks for answer.
  Reply


Messages In This Thread
Help with sqlite floats - by Turk54721 - 2021-04-11, 12:12 PM
RE: Help with sqlite floats - by DandoRYx - 2021-04-11, 01:52 PM
RE: Help with sqlite floats - by Turk54721 - 2021-04-11, 03:12 PM
RE: Help with sqlite floats - by DandoRYx - 2021-04-11, 03:43 PM
RE: Help with sqlite floats - by Turk54721 - 2021-04-11, 04:49 PM
RE: Help with sqlite floats - by DandoRYx - 2021-04-11, 06:08 PM
RE: Help with sqlite floats - by Turk54721 - 2021-04-11, 06:43 PM
RE: Help with sqlite floats - by DandoRYx - 2021-04-11, 06:56 PM
RE: Help with sqlite floats - by Turk54721 - 2021-04-11, 07:46 PM
RE: Help with sqlite floats - by Turk54721 - 2021-04-12, 06:48 AM
RE: Help with sqlite floats - by DandoRYx - 2021-04-12, 01:17 PM
RE: Help with sqlite floats - by Turk54721 - 2021-04-12, 04:41 PM
RE: Help with sqlite floats - by DandoRYx - 2021-04-14, 03:30 PM
RE: Help with sqlite floats - by Turk54721 - 2021-04-16, 07:59 AM

Forum Jump: