Kombat 0 Posted March 18, 2011 Does anyone have a suggestion on how to format the following on multiple lines: _SQLite_Exec($hDB, "CREATE TABLE Administrator,AdministratorName,Password);") I tried: _SQLite_Exec($hDB, "CREATE TABLE Administrator_ AdministratorNumber, _ AdministratorName,_ Password);") but the editor rejects it. Share this post Link to post Share on other sites
AdmiralAlkex 125 Posted March 18, 2011 You can't "continue-line" in the middle of something. This should work better: _SQLite_Exec($hDB, "CREATE TABLE Administrator" _ & "AdministratorNumber," _ & "AdministratorName,"_ & "Password);") .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface Share this post Link to post Share on other sites
Kombat 0 Posted March 19, 2011 Does anyone have a suggestion on how to format the following on multiple lines:_SQLite_Exec($hDB, "CREATE TABLE Administrator,AdministratorName,Password);")I tried:_SQLite_Exec($hDB, "CREATE TABLE Administrator_AdministratorNumber, _AdministratorName,_Password);")but the editor rejects it.Thank you, that was the information I needed. Share this post Link to post Share on other sites